@import url("menu.css");
@import url("jssor.css");
@import url("layout.css");
@import url("products.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap'); /*宋體*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap'); /*黑體*/



.home_wrap{
	width:1280px;
	margin:0 auto;
}

.in_sec{
	overflow:hidden;
	display:flex;
    flex-wrap:wrap;
}
.in_sec li{
	float:left;
}
.in_sec li:nth-child(1){
	width:30%;
	position:relative;	
}
.in_sec li:nth-child(2){
	width:70%;
}
.in_sec li:nth-child(1) .home_bt {
    display:block;
}
.in_sec li:nth-child(2) .home_bt {
    display:none;
}
.in_title{
	font-size:2.8rem;
	font-weight:500;
	color:#333;
}
.in_title span{
	display:block;
	font-size:1.5rem;
	color:#ccc;
	padding:10px 0;
	box-sizing:border-box;
}
.in_news{
	width:100%;
}
.in_news li{
	
	width:100%;
}
.in_news li:nth-child(1){
	width:100%;
	padding: 0;
}
.in_news li:nth-child(2){
	width:100%;
}
.in_news li a{
	display:block;
	overflow:hidden;
	position: relative;
    padding: 40px 0;
	box-sizing:border-box;
	
	transition-property: color;
	transition-duration: 0.25s;
	
}
.in_news li a::before , .in_news li a::after{
	display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height:1px;
    background-color: #E7E7E7;
    z-index: 1;
}
.in_news li a::after{
	transition-property: transform;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(0.87,0,0.13,1);

	background-color: #038c73;
    transform: scaleX(0);
    transform-origin: right;
}

.in_news li a:hover:after{
	transform:scaleX(1);
	transform-origin:left;
	transition-timing-function:cubic-bezier(0.16,1,0.3,1);
}
.in_news li a:hover .in_arrow{
	display: block;
}
.in_arrow{
	position: absolute;
    top: 50%;
    right: 16px;
    margin-top: -6px;
    width: 14px;
    height: 14px;
	display:none;
}
.in_arrow:after, .in_arrow:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../images/arrow.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size:14px 14px;
    z-index: 1;
}

.in_news_date{
	font-size:1.2rem;
	color:#333;
	font-family: "Roboto", sans-serif;
	font-weight:400;
	text-align:center;
	padding:2px 0 0 0;
	box-sizing:border-box;
	width:18%;
	float:left;
}
.in_news_right{
	width:82%;
	float:left;
}

.in_news_txt{
	font-size:1.375rem;
	color:#222;
	font-weight:400;
}
.in_news_type{
	display:block;
	color:#000;
	font-size:15px;
	font-weight:400;
}
.in_news_type span{
	display:inline-block;
	padding:5px 20px;
	border:1px solid #ccc;
	background:#f5f5f5;
	border-radius:5px;
	margin:0 0 10px 0;
}

.in_p_list{
	overflow:hidden;
	display:flex;
    flex-wrap:wrap;
}
.in_p_list li{
	float:left;
	width:33.1%;
	margin:0 1px 1px 0;
}
.in_p_list li:nth-child(1){
	width:33.1%;
}
.in_p_list li:nth-child(2){
	width:33.1%;
}
.in_p_list li a{
	display:block;
	position: relative;
	overflow:hidden;
}
.in_p_list li a:hover{
}
.in_p_list li a:hover .in_p_item{
}
.in_p_list li a:hover .in_p_img{
	-webkit-transform: scale(1.1);
	-webkit-transition: 0.3s;
}
.in_p_img{
	width:100%;
	overflow:hidden;
}
.in_p_img img{
	display:block;
	-webkit-transform: scale(1.0);
	-webkit-transition: 0.3s;
}
.in_p_item{
	font-size:1.375rem;
	font-weight:500;
	color:#fff;
	position: absolute;
	left:0;
	bottom:0;
	width:100%;
	height:50px;
	background-image: linear-gradient(to top, rgba(0, 0, 0 , 0.3) 50%, transparent 100%);
	padding:10px 0 0 20px; 
	box-sizing:border-box;
}
.hot_body{
	display:none;
}

.in_p_txt{
	font-size:1.25rem;
	font-weight:400;
	color:#262626;
	line-height:1.8;
	letter-spacing:2px;
	padding:10% 15% 0 0;
	box-sizing:border-box;
}
.in_pbg{
	 background: url(../images/inbg2.png) no-repeat;
	 padding:25% 0 5% 0;
	 box-sizing:border-box;
}
.home_bt{
	width:225px;
	
	position:absolute;
	bottom:4px;
	font-size:1.25rem;
	line-height:1.8;
	font-weight:400;
	text-indent:35px;
}
.home_bt a{
	display:block;
	padding:10px;
	background:#18876f;
	border:1px solid #18876f;
	border-radius:5px;
	color:#fff;
	position:relative;
	text-decoration:none;
}
.home_bt a::before{
	content:'';
	display:block;
	width:16px;
	height:16px;
	border-radius:8px;
	background:#95bfac;
	position:absolute;
	right:25px;
	top:22px;
}
.home_bt a::after{
	content:'';
	display:none;
	width:26px;
	height:26px;
	background: url(../images/fbtarrow.png) no-repeat;
	background-size:24px 24px;
	position:absolute;
	right:25px;
	top:16px;
}
.home_bt a:hover{
	background: #fff;
	border:1px solid #025949;
	color:#025949;
}
.home_bt a:hover::before{
	display:none;
}
.home_bt a:hover::after{
	display:block;
}




.banner_wrap{
	width:1280px;
	margin:0 auto;
	padding:210px 0 0 0;
	box-sizing:border-box;
}
.banner_tittle{
	font-size:2.5rem;
	font-weight:500;
	color:#05261d;
}
.newslist{
}
.newslist li{
}
.newslist li a{
	display:block;
	padding:20px 0;
	box-sizing:border-box;
	text-decoration:none;
	overflow:hidden;
	position: relative;
	
	transition-property: color;
	transition-duration: 0.25s;
}
.newslist li a::before , .newslist li a::after{
	display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height:1px;
    background-color: #E7E7E7;
    z-index: 1;
}
.newslist li a:after{
	transition-property: transform;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(0.87,0,0.13,1);

	background-color: #038c73;
    transform: scaleX(0);
    transform-origin: right;
}
.newslist li a:hover:after{
	transform:scaleX(1);
	transform-origin:left;
	transition-timing-function:cubic-bezier(0.16,1,0.3,1);
}
.newslist li a:hover .in_arrow{
	display:block;
}

.newsarrow{
	position: absolute;
    top: 50%;
    right: 16px;
    margin-top: -6px;
    width: 14px;
    height: 14px;
}

.newsdate{
	font-size:1.125rem;
	line-height:40px;
	color:#333;
	font-family: "Roboto", sans-serif;
	font-weight:400;
	text-align:center;
	width:14%;
	float:left;
}

.newstype{
	font-size:15px;
	line-height:40px;
	font-weight:400;
	text-align:center;
	width:12%;
	float:left;
	color:#000;
}
.newstype span{
	display:inline;
	padding:2px 20px;
	border:1px solid #ccc;
	background:#f5f5f5;
	border-radius:15px;
}
.newstitle{
	display:block;
	font-size:1.375rem;
	line-height:40px;
	font-weight:400;
	color:#333;
	letter-spacing:1px;
	width:80%;
	float:left;
	padding:0 0 0 30px;
}
.overtext{
	
}

.about-wrap{
	width:1160px;
	margin:0 auto;
}
.about_title{
	font-size:2.5rem;
	font-weight:400;
	color:#444;
}
.about_entittle{
	font-size:1.3rem;
	font-family:Verdana, Geneva, sans-serif;
	color:#444;
	padding:0 50px 0 0;
	position: relative;
	margin:2% 0 3% 0;
}
.about_entittle::after{
	position: absolute;
    content: '';
    top: calc(50% - 1.5px);/*上下中央にする*/
    display: inline-block;
    width:88%;
    height: 1px;
    border-top: 1px dashed #444;
    right: 0;
	
}
.about_txt{
	font-size:1.25rem;
	font-weight:300;
	letter-spacing:4px;
	line-height:2;
}
.about_box{
	
}
.about_subtitle{
	font-size:1.625rem;
	font-weight:400;
	text-align:center;
	color:#444;
	padding:0 0 20px 0;
	box-sizing:border-box;
}
.about_subtitle::after{
	 content: '';
	 display:block;
	 width:30px;
	 height:5px;
	 background:#18876f;
	 margin:20px auto;
}
.firm{
	width:100%;
	background:#efefef;
	padding:70px 0;
	margin:8% 0;
}

.firm::after{
	
}
.about_subtxt{
	font-size:2.5rem;
	font-weight:bold;
	line-height:1.8;
	text-align:center;
	color:#00392d;
	letter-spacing:4px;
	margin:0 0 0 0;
}
.about_subtxt span{
	font-family: 'Noto Serif TC', serif;
    font-weight: 400;
	background: linear-gradient(transparent 70%, #c5dbd1 0%)

}
.concept{
	width:85%;
	margin:0 auto 5% auto;
	overflow:hidden;
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.concept li{
	float:left;
	margin:0 0 20px 0;
}
.concept li:nth-child(odd){
	width:30%;
}
.concept li:nth-child(even){
	width:70%;
	margin: auto;
  justify-content: center;
  align-items: center; 
   padding:0 0  0 20px ;
   box-sizing: border-box;
}
.concept_title{
	display:block;
	font-size:1.625rem;
	font-weight:400;
	padding:0 0 20px 0;
}
.concept_title span{
	display:inline;
	padding:0 20px 0 0;
}
.concept_txt{
	display:block;
	font-size:1.25rem;
	font-weight:400;
	line-height:1.8;
	letter-spacing:2px;
	color:#333;
}
.abgne_tab {
		width: 1160px;
		margin:0 auto;
	}
.tabs {
		width: 100%;
		height:61px;
		overflow:hidden;
		margin:0 0 5% 0;
}
.tabs li {
		float: left;
		width: 50%;
		height: 60px;
		line-height: 60px;
		overflow: hidden;
		position: relative;
		margin-bottom: -1px;	/* 讓 li 往下移來遮住 ul 的部份 border-bottom */
		border-bottom: 1px solid #ccc;
		
		font-size:1.25rem;
		text-align:center;
		font-weight:500;
}
.tabs li a {
		display: block;
		color: #000;		
		text-decoration: none;
		
	}
.tabs li a:hover {
	}
.tabs li.active  {
	font-weight:bold;
	border-bottom:5px solid #666;

	}

.tab_container {
		clear: left;
		width: 100%;
}
.tab_content {
	padding: 20px;
	box-sizing:border-box;
}
.headquarters{
	overflow:hidden;
	margin:0 0 5% 0;
}
.headquarters li:nth-child(1){
	width:55%;
	float:left;
	padding:0 30px;
}
.headquarters li:nth-child(2){
	width:45%;
	float:left;
	
}
.branch{
	overflow:hidden;
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.branch li{
	float:left;
	margin:0 0 30px 0;
	padding:30px 35px 35px 0;
}
.branch li:nth-child(odd){
	width:50%;
	border-bottom:1px solid #ddd;
	border-right:1px solid #ddd;
}
.branch li:nth-child(even){
	width:50%;
	border-bottom:1px solid #ddd;
	border-left:0px solid #ddd;
}
/*.branch li:nth-child(3n+3){
	width:33%;
	border-top:1px solid #ddd;
	border-left:1px solid #ddd;
}*/
.company_name{
	font-size:1.625rem;
	font-weight:400;
	color:#444;
	margin:0px 0px 0px 10px;/*上右下左*/
	border-left:8px solid #ccc;
	padding:0 0 0 20px;
	box-sizing:border-box;
}
.company_add{
	font-size:1.1875rem;
	font-weight:400;
	color:#222;
	letter-spacing:2px;
	line-height:1.5;
	padding:20px 0 20px 40px;
}
.company_tel{
	font-size:1.1875rem;
	color:#444;
	font-family: "Roboto", sans-serif;
    font-weight: 400;
	padding:0 0 0 40px;
}
.d_date{
	font-size:1.125rem;
	line-height:40px;
	font-family: "Roboto", sans-serif;
    font-weight: 400;
	display:inline-block;
	margin:0 20px 0 0;
}
.d_type{
	width:120px;
	height:32px;
	font-size:15px;
	font-weight:500;
	line-height:32px;
	background:#f5f5f5;
	border-radius:5px;
	border:1px solid #ccc;
	text-align:center;
	color:#444;
	display:inline-block;
}
.d_title{
	width:100%;
	clear:both;
	font-size:1.3rem;
	font-weight:400;
	letter-spacing:2px;
	padding:15px 0 20px 0;
}
.d_box{
	width:100%;
	padding:30px;
	background:#fff;
	border-radius:4px;
	border:1px solid #eee;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	margin:30px 0 0 0;
}
.sub{
	width:25%;
	float:left;
}
.content{
	width:67%;
	float:right;
}
.subitem{
  cursor: pointer;
  width: 100%;
  font-size:1.25rem;
  line-height:1.8;
  color: #444;
  font-weight:bold;
  padding:15px 18px;
  transition: 0.4s;
  border-bottom:1px solid #ccc;
  position:relative;
}
.subitem:hover{
	color:#03a65a;
}
.subitem:after{
   display:none;
   content: '\002B';
   color: #000;
   font-weight: bold;
   float: right;
   font-size: 16px;	
   
   position:absolute;
   top:30%;
   right:30px;
}
.subitem.active:after{
  content: "\2212";
  color:#04bf68;
}
.subitem:nth-child(4):after{
  display:block;
}
.subitem:nth-child(6):after{
  display:block;
}
.subitem{
	
}
/*
.subitem:nth-child(1):after, .subitem:nth-child(2):after, .subitem:nth-child(7):after, .subitem:nth-child(8):after{
	display:none;
}
*/

/*
.accordion:after {
	display:block;
  content: '\002B';
  color: #000;
  font-weight: bold;
  float: right;
  font-size: 16px;
  margin:5px 0 0 0;
}

.active:after {
  content: "\2212";
  color:#04bf68;
}
*/
.w3-hide{display:none!important}
.w3-show-block,.w3-show{display:block!important}
.w3-show-inline-block{display:inline-block!important}

.panel {
  padding:0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.subnav_item{
	font-size:1.125rem;
  font-weight:400;
  line-height:1.6;
  text-indent:10px;
}
.subnav_item a{
	display:block;
	color: #444;
    padding:10px ;
}
.subnav_item a:hover{
	color:#03a65a;
}
.subnav_item .active{
    color:#03a65a;
}
.subnav_item .active a{
   
}
/*
.panel p{
  font-size:1.125em;
  font-weight:bold;
  line-height:1.6;
  text-indent:10px;
}
.panel p a{
	display:block;
	color: #444;
    padding:10px ;
}
.panel p a:hover{
	color:#025949;
}
*/
.benefits{
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	margin:5% 0;
}
.benefits li{
	width:31%;
	float:left;
	background:#fff;
	padding:0 0 2% 0;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.benefits li:nth-child(2){
	margin:0 2% 0 2%;
}
.b_list{
	padding:10px 20px;
}
.b_list li{
	width:100%;
	position:relative;
	font-size:1.125rem;
	font-weight:400;
	letter-spacing:2px;
	line-height:1.7;
	padding:0 20px;
	margin:0 0 10px 0;
	box-shadow: none;
}
.b_list li:nth-child(2){
	margin:0 0 10px 0;
}
.b_list li:before{
	content:'';
	position:absolute;
	width:8px;
	height:8px;
	background:#04bf68;
	border-radius:4px;
	left:0;
	top:10px;

}
.join_text{
	font-size:1.375rem;
	font-weight:400;
	letter-spacing:3px;
	color:#3f3a39;
	line-height:1.8;
	width:800px;
	margin:0 auto;
	text-align:center;
}
.b_item{
	border-left:5px solid #ccc;
	margin:20px 0;
	font-size:1.5rem;
	font-weight:400;
	padding: 0 0 0 15px;
	color:#444;
}
.join_bt{
	width:225px;
	margin:0 auto;
	
}
.join_bt a{
	display:block;
	background:#18876f;
	border:1px solid #18876f;
	border-radius:4px;
	padding:10px;
	font-size:1.25rem;
	font-weight:bold;
	line-height:1.8;
	color:#fff;
	text-indent:35px;
	position:relative;
}
.join_bt a::before{
	content:'';
	display:block;
	width:16px;
	height:16px;
	border-radius:8px;
	background:#95bfac;
	position:absolute;
	right:25px;
	top:20px;
}
.join_bt a::after{
	content:'';
	display:none;
	width:26px;
	height:26px;
	background: url(../images/fbtarrow.png) no-repeat;
	background-size:26px 26px;
	position:absolute;
	right:25px;
	top:16px;
}
.join_bt a:hover{
	background: #fff;
	border:1px solid #025949;
	color:#025949;
}
.join_bt a:hover::before{
	display:none;
}
.join_bt a:hover::after{
	display:block;
}
.contact-header{
	font-size: 1.75rem;
    font-weight: 400;
	margin:0 0 30px 0;
	letter-spacing:3px;
	color:#3f3a39;
}
.contact-sub{
	font-size: 1.25rem;
	line-height:1.6;
	font-weight: 400;
	color:#444;
	letter-spacing:3px;
}
.contact_box{
	
	/*box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;*/
	margin:5% 0;
}
.contact_box ul{
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact_box li{
	border-bottom:1px solid #eee;
	padding:20px 0;
}
.contact_box li:nth-child(odd){
	width:22%;
}
.contact_box li:nth-child(even){
	width:78%;
}

.c_name{
	font-size: 1.25rem;
	line-height:1.6;
	font-weight: 400;
	color:#333;
}
.c_left{
	width:49%;
	float:left;
}
.c_right{
	width:49%;
	float:right;
}
.c_box{
	width:100%;
	clear:both;
}
.c_left input[type="text"], .c_right input[type="text"], .c_box input[type="text"]{
	width:100%;
	margin:0 0 10px 0;
}
.c_box textarea{
	width:100%;
	max-width:100%;
	min-width:100%;
	min-height:100px;
	max-height:100px;
}
.c_label{
	display:block;
	font-size: 1.125rem;
	line-height:1.6;
	font-weight: 400;
	padding:8px 0;
	color:#444;
}
.must{
	color: #04bf68;
    padding: 0 10px 0 0;
}
.code{
	overflow:hidden;
}
.code img{
	height:38px;
	float:left;
	margin:0 10px 0 0;
}
.code input[type="text"]{
	float:left;
	width:200px;
}
.code i{
	float:left;
	font-size:30px;
	color:#444;
	padding:5px 0 0 20px;
}
.code a{
	
}
.contact_bt{
	width:250px;
	height:60px;
	margin:20px auto 0 auto;
}
.contact_bt input[type="submit"]{
	width:250px;
	height:60px;
	border:1px solid #18876f;
	border-radius:4px;
	font-size:20px;
	text-align:left;
	font-weight:bold;
	color:#fff;
	text-indent:40px;
	background:url(../images/arrowwh.png) no-repeat 85% center #18876f;
	background-size:16px 16px;
}
#contact_ok:hover{
    background:url(../images/arrow.png) no-repeat 90% center #fff;
	background-size:16px 16px;
	color:#18876f;
	-webkit-transition: 0.5s;
}


/*radio css*/
.radio input[type="radio"] {display: none; }
.radio input:checked + .button {
	border:1px solid #04bf68; 
	color: #04bf68; 
	cursor: default; 
}
.radio input:checked + .button i{
	color: #04bf68; 
}
.radio .button {
	display: inline-block;
	margin: 0 0 8px 0; 
	padding:10px; 
	background: #fff; 
	border:1px solid #ccc;
	color: #333; 
	border-radius: 4px; 
	cursor: pointer; 
	
	font-size: 1.0625rem;
	font-weight:400;
	letter-spacing:2px;
	line-height:22px;
	position:relative;
}
.radio .button i{
	font-size:18px;
	color:#ccc;
	position:absolute;
	right:10px;
	top:12px;
}
.radio .ll{
	width:49%;
	float:left;
}
.radio .rl{
	width:49%;
	float:right;
}
.radio .button:hover {
	
	
}
.radio .round {}



/* Timeline */
.timeline {
  margin: 0 auto;
  position: relative;
  left: 120px;
  width:90%; 
}

.timeline-item {
  color: #000;
  text-align: left;
  padding: 0.8rem 1.5rem 1.5rem 1.5rem ;
  border-left: 2px solid #025949;
  position: relative;
  list-style-type: none;
  /*--item-width: calc(100%);*/
  width:100%;
  font-size:1.375rem;
  font-weight:400;
  line-height:1.7;
  letter-spacing:2px;
  
}
.timeline-item::after {
  content: attr(data-date);
  position: absolute;
  left: -110px;
  top:10px;
  float: right;
  font-weight: bold;
  white-space: nowrap;
  font-family: "Roboto", sans-serif;
  font-weight:800;
  color:#025949;
  font-style:italic;
  font-size:2rem;
}
.timeline-item::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/pot.png) no-repeat;
  background-size:20px 20px;
  position: absolute;
  left: -11px;
  top: 21px;
}
.timeline-item:last-child {
  
}

.info_tab {
		width:100%;
	}
.info_tabs {
		width: 100%;
		height:61px;
		overflow:hidden;
		margin:0 0 5% 0;
}
.info_tabs li {
		float: left;
		width: 33.33%;/*******增加tab時要用每個tab的寬度*******/
		height: 60px;
		line-height: 58px;
		overflow: hidden;
		position: relative;
		margin-bottom: -1px;	/* 讓 li 往下移來遮住 ul 的部份 border-bottom */
				
		font-size:1.25rem;
		text-align:center;
		background:#fff;
}
.info_tabs li a {
		display: block;
		color: #000;		
		text-decoration: none;
		background:#fff;
		border:1px solid #ccc;
}
.info_tabs li.active a{
	  font-weight:500;
	  background:#3f3a39;
	  color:#fff;
	  border:1px solid #3f3a39;
}
.info_tab_container {
		clear: left;
		width: 100%;
}
.info_tab_content {
	padding: 20px 0;
	
}
.financial{
	width:100%;
	
	border-bottom:1px solid #ccc;
	border-top:0;
	border-left:0;
	border-right:0;
	font-size:1.25rem;
    font-weight:bold;
	color:#333;
	text-align:left;
	padding:20px;
	position:relative;
}

.financial:after{
   display:block;
   content: '\002B';
   color: #000;
   font-weight: bold;
   float: right;
   font-size: 16px;	
   
   position:absolute;
   top:40%;
   right:30px;
}
.financial.active:after{
  content: "\2212";
  color:#000;
}
.financial_inner{
	padding:30px;	
}
.point{
	font-size:1.625rem;
	font-weight:500;
	color:#025949;
	background:url(../images/point.png) no-repeat left;
	background-size:25px 25px;
	padding:0 0 0 40px;
	position: relative; 
}
.point::after{
	position: absolute;
    content: '';
    top: calc(50% - 1.5px);/*上下中央にする*/
    display: inline-block;
    /*width:70%;
    height: 1px;
    border-top: 1px dashed #025949;*/
    width:100%;
    height: 1px;
    margin-top:30px;
    border-top: 2px solid #025949;
    right: 0;
	
}
.point_box{
	padding:20px 0 50px 40px;
}
.point_box h3{
	font-size:1.375rem;
	font-weight:400;
	line-height:1.8;
	text-indent:-25px;
}
.point_box p{
	font-size:1.25rem;	
	line-height:1.8;
	text-indent:-25px;
}
.normlist{
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	overflow:hidden;
	margin:5% 0;
}
.normlist li{
	font-size:1.1875rem;
	line-height:1.8;
	margin:0 0 20px 0;
	background:#f0f1f2;
	
}
.normlist li:nth-child(odd){
	width:49%;
	float:left;
}
.normlist li:nth-child(even){
	width:49%;
	float:right;
}
.normlist li a{
	display:block;
	overflow:hidden;
	border-top-right-radius:4px;
	border-bottom-right-radius:4px;
}
.normll{
	width:79%;
	float:left;
	color:#444;
	text-indent:20px;
	padding:12px 0;
	font-weight:400;
	border-bottom:1px solid #3f3a39;
}
.normrr{
	width:20%;
	float:right;
	text-align:center;
	background:#3f3a39;
	border-bottom:1px solid #3f3a39;
	color:#fff;
	padding:12px 0;
	
}
.normtable{
	width:100%;
	font-size:1.125rem;
	line-height:1.8;
	text-align:center;
	margin:5% 0;
	border-spacing: 5px;
}
.normtable thead{
	color:#444;
	
}
.normtable thead td{
	padding:10px 0;
	border-bottom:2px solid #3f3a39;
	font-weight:400;
}
.normtable tbody td{
	padding:12px 0;
	border-bottom:1px solid #3f3a39;
}
.normtable tbody td:nth-child(1){
	background:#3f3a39;
	color:#fff;

}

.info_r{
	text-align:right;
	font-size:1rem;
	line-height:1.6;
	margin:0 0 10px 0;
}
.ir_txt{
	font-size:1.1875rem;
	line-height:2;
	letter-spacing:2px;
}
.ir_inner{
	padding:0 0 50px 30px;
}
.{
}
.{
}
.{
}
.{
}
/*公司治理*/
.committee_item{
}
.committee_item li{
	font-size:1.1875rem;
	line-height:2;
	background:url(../images/c_item.png) no-repeat 5px;
	text-indent:25px;
	margin:0 0 10px 0;
}
.pdflink{
	overflow:hidden;
	font-size:1.1875rem;
	
}
.pdflink li:nth-child(odd){
	width:49%;
	float:left;
	margin:0 0 1% 0;
}
.pdflink li:nth-child(even){
	width:49%;
	float:right;
	margin:0 0 1% 0;
}
.pdflink li a{
	display:block;
	background:url(../images/pdficon.png) no-repeat 20px center #f4f4f4;
	background-size:15px 20px;
	color:#000;
	padding:20px 20px 20px 50px;
	border-radius:4px;
}
.pdflink li a:hover{
	background:url(../images/pdficon.png) no-repeat 20px center #ddd;
	background-size:15px 20px;
}
.member{
	background:#f6f6f6;
	width:100%;
	padding:20px;
	margin:20px 0 0 0;
	font-family: "Noto Sans TC", sans-serif;
	font-size:1.25rem;
	font-weight:500;
	border-radius:4px;
	letter-spacing:2px;
	position:relative;
}
.member span{
	display:block;
	font-size:1.125rem;
	color:#555;
	font-weight:400;
}
.member:after{
   display:block;
   content: '\002B';
   color: #000;
   font-weight:700;
   float: right;
   font-size: 16px;	
   
   position:absolute;
   top:40%;
   right:30px;
}
.member.active:after{
  content: "\2212";
  color:#04bf68;
}
.member_panel{
	background:#fff;
	padding:20px;
	border:1px solid #f6f6f6;
}
.intro_member{
	font-size:1.25rem;
	font-weight:400;
	margin:10px 0;
	background:url(../images/circle.png) no-repeat left center;
	background-size:13px 13px;
	padding:0 0 0 30px;
	color:#444;
}
.revise {
	padding:0 0 0 30px;
}

.revise li{
	font-size:1.1875rem;
	font-weight:400;
	line-height:2;
	text-indent:0;
	margin-left:0;
	list-style:decimal;
	letter-spacing:2px;
}

.security{
	background:#fff;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border:1px solid #ddd;
	border-radius:4px;
	padding:40px;
	overflow:hidden;
}
.sign{
	width:300px;
	height:auto;
	float:right;
	margin:30px 0 0 0;
}
.manage{
	padding:0 0 0 35px;
}
.manage li{
	font-size:1.1875rem;
	font-weight:400;
	line-height:2;
	background:url(../images/circle.png) no-repeat left 12px;
	background-size:10px 10px;
	padding:0 0 0 20px;
	letter-spacing:2px;
}
.ceo_tab{
}
.ceo_tabs {
		width: 100%;
		height:61px;
		overflow:hidden;
		margin:0 0 5% 0;
		
		
}
.ceo_tabs li {
		float: left;
		width: 20%;
		height: 60px;
		overflow: hidden;
		position: relative;
		margin-bottom: -1px;	/* 讓 li 往下移來遮住 ul 的部份 border-bottom */
		 display:  table;		
}
.ceo_tabs li a {
		display: block;
		height: 60px;
		color: #000;		
		text-decoration: none;
		background:#fff;
		border:1px solid #ccc;
		text-align:center;
		display:table-cell;
        vertical-align:middle;
       text-align:center;	
}
.ceo_tabs li p{
      font-size:1.0625rem;
	  line-height:20px;
	  font-weight:400;
}
.ceo_tabs li.active a{
	  font-weight:500;
	  background:#3f3a39;
	  color:#fff;
	  border:1px solid #3f3a39;
}
.ceo_tabs li.active:after{ 
     content:none;
}


.convention{
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.convention li{
	font-size:1.1875rem;
	line-height: 1.8;
	letter-spacing:1px;
	padding:14px 5px;
	font-weight:400;
}
.convention li:nth-child(odd){
	width:18%;
	float:left;
	
	border-bottom:1px solid #333;
}
.convention li:nth-child(even){
	width:80%;
	float:right;
	border-bottom:1px solid #ccc;
}
.file{
	margin:0 15px 0 0;
}
.file a{
	display:inline;
	color:#000;
	background:url(../images/pdficon.png) no-repeat left center;
	background-size:12px 16px;
	padding:0 0 0 18px;
}
.file a:hover{
	 color:#883226;
}
.stock_bt{
	width:300px;
	margin:0 0 50px 0;
	font-size:1.375rem;
	font-weight:500;
	letter-spacing:2px;
}
.stock_bt a{
	display:block;
	color:#000;
	border:1px solid #333;
	background:#fff;
	border-radius:4px;
	padding:20px;
	position:relative;
}
.stock_bt a i{
	color:#333;
	position:absolute;
	right:20px;
}
.stock_bt a:hover{
	background:#333;
	color:#fff;
}
.stock_bt a:hover i{
	color:#fff;
}
/*privacy*/
.privacy{
	padding:0 0 0 3rem;
}
.privacy li{
	font-size:1.25rem;
	letter-spacing:4px;
	line-height:2;
	margin:0 0 0 25px;
	text-indent:-25px;
}
.pri_inner{
	padding:0 0 0 3rem;
}
.{
}
.{
}
.{
}
.{
}
.{
}
.{
}
.{
}
.{
}
.{
}
.{
}

.rwd_title{
	display:none;
    font-size:1.5rem;
	font-weight:bold;
	padding:15px 18px;
	color:#025949;
	border-bottom: 1px solid #dbdbdb;
}


.rwd_item{
	display:none;
	font-size:1.87rem;
	text-align:center;
	color:#fff;
	font-weight:bold;
	padding:10px 0;
	box-sizing:border-box;
	background:url(../images/titlebg.jpg) ;
	background-size:cover;
	margin:0 0 10px 0;
}

@media (max-width: 1440px) {

}


@media (max-width: 1366px) {
.timeline {
  left:40px; 
}
}

@media (max-width: 1280px) {
.banner_wrap {
    width: 90%;
	padding:100px 0 90px 0;
}
.home_wrap{
	width:90%;
}
.timeline {
  left:80px; 
}
}


@media (max-width: 1160px) {
.about-wrap{
	width:100%;
}
.abgne_tab {
		width:100%;
}
}

@media (max-width: 1024px) {
.concept {
    width: 100%;
}
.newstype{
	width:20%;
}
.newstitle{
	width:80%;
}
.join_bt a::before{
    top:17px;
}
}

@media (max-width: 800px) {
.join_text{	
	width:100%;
	
}

.in_sec li:nth-child(1){
	width:40%;
}
.in_sec li:nth-child(2){
	width:60%;
}
}

@media (max-width: 768px) {
.join_text{	
	width:100%;
	
}
.banner_wrap {
	padding:80px 0 70px 0;
}
.banner_tittle {
    font-size: 2rem;
}
.in_sec li{
	float:none;
}
.in_sec li:nth-child(1){
	width:100%;
	padding:0 0 10px 0;
}
.in_sec li:nth-child(2){
	width:100%;
}
.in_sec li:nth-child(1) .home_bt {
    display:none;
}
.in_sec li:nth-child(2) .home_bt {
    display:block;
}
.home_bt{
	position: relative;
	bottom:auto;
	margin:20px auto;
}
.in_p_list li{
	width:49%;
	margin:0 1px 1px 0;
}
.in_p_list li:nth-child(1){
	width:49%;
	padding:0 ;
}
.in_p_list li:nth-child(2){
	width:49%;
	padding:0 ;
}
.in_p_txt {
    padding: 5% 0;
}
.content{
	width:90%;
	float:none;
	margin:0 auto;
}
.sub{
	width:100%;
	float:none;
	background:#eaeaea;
	border-top: 2px solid #dbdbdb;
	padding:16px 30px;
	position: relative;
}
.sub::before{
    background: #fff;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    top: -1px;
}
.subitem {
    border-bottom: 1px solid #dbdbdb;
}
.rwd_title{
	display:block;
}
.timeline-item {
    padding: 1.5rem ;
}
}

@media (max-width: 640px) {
.contact_box li:nth-child(odd){
	width:25%;
}
.contact_box li:nth-child(even){
	width:75%;
}
.branch li{
	margin:0 0 30px 0;
	padding:30px 30px 30px 0;
}
.branch li:nth-child(3n+1){
	width:50%;
}
.branch li:nth-child(3n+2){
	width:50%;
	border-left:0px solid #ddd;
}
.branch li:nth-child(3n+3){
	width:50%;
	border-left:0px solid #ddd;
}
.branch li:nth-child(even){
	border-left:1px solid #ddd;
}
.newsdate{
	width:100px;
	text-align:left;
}
.newstype{
	width:200px;
	text-align:left;
}
.newstitle{
	width:100%;
	padding:0 0 0 0;
	line-height:1.6;
}
.benefits {
	width:90%;
    margin: 5% auto;
}
.benefits li{
	width:100%;
	float:none;
	margin:0 0 20px 0;
}
.benefits li:nth-child(2){
	margin:0 0 20px 0;
}
.b_list li { 
    margin: 0 0 10px 0;    
}
.b_list li:before {
    top:6px;
}
.in_news_date{
	width:22%;
	
}
.in_news_right{
	width:78%;
	
}
.normlist li:nth-child(odd){
	width:100%;
	float:none;
}
.normlist li:nth-child(even){
	width:100%;
	float:none;
}
.timeline {
    width: 80%;
	left: 60px;
}
.home_bt a::before{
	top:16px;
}
}

@media (max-width: 480px) {
.contact_box li{
     padding:15px 0;
}
.contact_box li:nth-child(odd){
	width:100%;
	border-bottom:0px solid #eee;	
}
.contact_box li:nth-child(even){
	width:100%;
}
.in_news li a {   
    padding:30px 0;
}
.in_news_date{
	width:100%;
	text-align:left;
	padding: 10px 0;
}
.in_news_right{
	width:100%;
	
}
.sign{
	width:200px;
}
.timeline-item::after {
    left: -90px;
}
}
