﻿/* ---reset.css--- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption,  tfoot, 
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

a,a:link,a:visited{text-decoration: none}
a:hover{ text-decoration: none; cursor:pointer;}


body {
	line-height: 1;
	font-size: 16px;
	font-family:"Open Sans","Noto Sans TC","Microsoft JhengHei", "Source Sans Pro", sans-serif;
	color:  #2e2a2e;
	display: relative;
	word-wrap: break-word;
	word-break: break-all;
	margin:0;
	padding:0;
	overflow-x: hidden;
	overflow-y: scroll;
}

table{
	border-collapse: collapse;
}


/* --選單------------------------------------- */

nav {
	width: 100%;
    display: block;
    background-color: #ffffff;
    color: #ecedee;
    border-color: #060606;
    height: 80px;
	z-index: 9999;
	position: fixed;
	box-shadow:0px 1px 2px rgba(165, 165, 165, 0.3)
}


nav a {
    color: #666666;
}

nav a:link {
    color: #666666;
}

nav a:hover {
    color: #1a99d2;
}

#logo {
	display: block;
	float: left;
}

#logo img{
	width: 210px;
	padding-top: 32px;
	padding-left: 20px;
}

nav label {
    display: block;
    float: right;
	padding-top: 23px ;
	padding-bottom: 12px;
	padding-right: 20px;
}

nav label div {
	width: 30px;
	height: 3px;
	background-color: #9e9e9e;
	margin: 6px 0;
}

nav ul {	
    display: none;
    list-style:none;
	clear: both;
	font-size: 16px;
}

nav ul li {
	display: block;
	border-bottom: 1px solid #dbdbdb;
}

nav ul li a {
    display: block;
    height: 50px;
    text-align: center;
    line-height: 50px;
	background: #ffffff;
	letter-spacing: 1.4px;
	float: none;
}

nav ul li a:hover {
    background: #f6fafd;
}

nav ul:active {
     display: block;
}

#drop {
      display: none;
}

#drop:checked ~ ul {
    display: block;
    clear: both;
}



@media screen and (min-width: 1280px) {
	nav {
		height:80px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	nav label {
		display: none;
	}
	
	nav ul {
		display: block;
		float: right;
		padding: 0px 40px;
		font-size: 18px;
	}
	
	nav ul li {
		display: inline-block;
		min-width: 160px;
		border-bottom: none;
	}
	
	nav ul li a {
		background: #ffffff;
	}
	
	nav ul li a:hover {
		background: #ffffff;
		color: #1a99d2;
	}

	#logo {
		display: block;
		float: left;
	}

	#logo img{
		width: 230px;
		padding-top: 5px;
		padding-left: 25px;
	}
}



/* --主視覺------------------------------------- */

#KV{
	width: 100%;
	height: 620px;
	padding-top: 80px;	
	background-image:url(image/KV_pc.png);
	background-repeat: no-repeat;
	background-position:center bottom;
	color: #FFF;		
}

.KV_content{
	width: 95%;
	max-width: 1200px;
	padding: 110px 0 0 0;
	margin: 0 auto;
	position: relative;
}


.KV_tit {
	width: 100%;
	max-width: 580px;
	padding: 0 0 0 30px;	
}

.KV_img{
	width: 80%;
	max-width: 450px;
	position: absolute;
	right: 8%;
	top: 10%;
	animation: KV_img_move 1.5s infinite ease-in-out;
    animation-direction: alternate;
}

@keyframes KV_img_move {
	from{
		top: 8%;
	}
	to{
		top:13%;
	}
}	


@media screen and (min-width:1920px){
	#KV{
		background-size: cover;
	}

}

@media screen and (min-width:913px) and (max-width: 1199px){

	#KV{
		width: 100%;
		height: 580px;
		padding-top: 70px;	
		background-image:url(image/KV_pc_2.png);
		background-repeat: no-repeat;
		background-position:center bottom;
		color: #FFF;		
	}
	
	.KV_content{
		max-width: 950px;
		margin: 0 auto;
	}
	
	
	.KV_tit {
		width: 90%;
		max-width:480px;
		padding: 30px 0 0 30px;
	}

	.KV_img{
		max-width: 380px;
		right: 3%;
	}

	@keyframes KV_img_move {
		from{
			top: 12%;
		}
		to{
			top:16%;
		}
	}	
	
	

}

@media screen and (max-width: 912px){
	#KV{		
		height: 620px;
		background-image:url(image/KV_mobile.png);
		padding-top: 80px;	
	}

	.KV_content{
		padding: 70px 0 0 0;
	}
		
	.KV_tit {
		width: 90%;
		max-width:380px;
		padding: 0;
		margin: 0 auto;
	}

	.KV_img{
		width: 80%;
		max-width: 320px;
		position: absolute;
		top: 95%;
		left: 50%;
		transform: translate(-50%);
	}
	
	@keyframes KV_img_move {
		from{
			top: 95%;
		}
		to{
			top:100%;
		}
	}	

}



/* --內容區共同設定------------------------------------ */

.content_section{
	width: 100%;
	padding:  80px 0;
	text-align: center;
	line-height: 1.2;
}

.content_section_2{
	padding:  80px 0 20px 0;
}


h2{
	width: 80%;
	font-size: 36px;
	text-align: center;
	line-height: 1.2;
	letter-spacing: 3px;
	margin: 0 auto;
}


h3{
	font-size: 28px;
	letter-spacing: 3px;
	padding: 10px  0;
	color: #00103F;
	text-align: center;
	font-weight: normal;
}


h4{
	width: 80%;
	max-width: 800px;
	font-size: 21px;
	font-weight: normal;
	color: #2e2a2e;
	text-align: justify;
	line-height: 1.5;
	padding: 15px 0 20px 0;
	margin: 0 auto;
}



.content_btn{
	display: inline-block;
	width: 60%;
	max-width: 240px;
	font-size: 23px;
	font-weight: bold;
	letter-spacing: 2px;
	color: #FFF;
	background-color: #1a99d2;
	border-radius: 40px;
	padding: 25px;
	margin: 30px 10px;
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
}

.content_btn_2{
	background-color: #ff7867;
}

.content_btn:hover{
	background-color: #32ade6;
}

.content_btn_2:hover{
	background-color: #f7543e;
}

.content_chart{
	width: 90%;
	padding: 10px 0;
}

.content_chart_two{
	display: inline-block;
	max-width: 480px;
	width: 90%;
	padding: 10px 0;
}

.content_chart_mobile{
	display: none;
}


.content_infotex{
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	text-align: justify;
	font-size: 16px;
	letter-spacing: 1px;
	color: #8C898A;
	padding: 30px 0  ;
}

.content_infotex_all{
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	color: #FFF ;
	padding:  80px 0;
}

.target-fix:target {
    padding-top: 80px;
}


@media screen and (min-width:812px) and (max-width: 1199px){
	
	h2{
		font-size: 28px;
	}

	h3{
		font-size: 28px;
	}

	.content_btn{
		font-size: 21px;
	}
	
}

@media screen and (max-width: 811px){
	.content_section{
		padding: 40px 0;
	}

	.content_section_2{
		padding:  40px 0 0 0;
	}
	

	h2{
		font-size: 22px;
		letter-spacing: 2px;
		padding: 5px 10px 0 10px;
	}

	h3{
		width: 90%;
		font-size: 22px;
		margin: 0 auto;
	}

	h4{
		width: 90%;
		font-size: 16px;
		padding: 25px 0 15px 0;
		margin: 0 auto;
	}

	.content_chart_pc{
		display: none;
	}
	

	.content_chart_mobile{
		display: block;
		margin: 0 auto;
	}

	.content_chart{
		width: 95%;
	}
	
	.content_chart_two{
		width: 90%;
		padding: 10px 0;
	}
	
	.content_btn{
		font-size: 20px;
		margin: 5px 10px 20px 10px;
	}

	.content_infotex{
		width: 95%;
		font-size: 15px;
		padding: 20px 0  ;
	}
	

}

/* --overview------------------------------------ */
#overview{
	width: 100%;
	color: #FFFFFF;
	background-color: #00103F;
}





@media screen and (min-width:812px) and (max-width: 1199px){

	
}


@media screen and (max-width: 811px){



}


/* --定期定額紀律投資四大優勢------------------------------------ */

#view{
	background-color: #C6E2F4;
	background-image:url(image/view_bg.svg);
	background-size: contain;
	background-repeat: repeat-y;
	padding: 40px 0;
}

.view_block{
	width: 85%;
	max-width: 1000px;
	background-color: #FFFFFF;
	border-radius: 60px;
	padding: 60px;
	margin: 60px auto 100px auto;
	position: relative;
}

.view_tit{
	width: 80%;
	max-width: 700px;
	padding: 15px 20px;
	color: #00103F;
	background-color: #FFFFFF;
	border:3px solid #00103F;
	border-radius: 50px;
	position: absolute;
	top: 8px;
    left: 50%;
    transform: translate(-50%, -50%);
}



.view_text{
	width:80%;
	max-width: 350px;
}


@media screen and (min-width:812px) and (max-width: 1199px){

	.view_block {
		width: 80%;
		border-radius: 60px;
		padding: 60px 40px;
	}
}


@media screen and (max-width: 811px){
	.view_block {
		width: 75%;
		border-radius: 50px;
		padding: 40px 20px;
		margin: 20px auto 80px auto;
	}
}




/* --嚴選基金------------------------------------- */

.feature_name{
	color: #FFFFFF;
}

.feature_block{
	display: inline-block;
	width: 85%;
	min-height: 435px;
	max-width: 240px;
	border-radius: 40px;
	padding: 40px  ;
	margin: 20px 15px;
	border: 4px solid #cad7e0;
	vertical-align: top;
}

.feature_block li{
	width: 90%;
	font-size: 18px;
	text-align: justify;
	padding: 10px 0;
	margin: 0 auto;
}

.feature_block img{
	width: 65%;
	padding: 20px 0;
}


.performance{
	width: 95%;
	max-width:1100px;
	font-size: 20px;
	margin: 0 auto;
	padding: 0 0 20px 0;
}

.performance table{
	width: 100%;
}

.performance_item{
	font-size: 20px;
	text-align: left;
	padding: 0 0 10px 0;
}

.performance th{
	color: #FFFFFF;
	background-color: #00103f;
	padding: 15px 5px;
}

.performance td{
	padding: 15px 10px;
	border-bottom:2px solid #d3d3d3;
}



@media screen and (max-width: 811px){
	.feature_block {
		max-width: 300px;
		min-height: auto;
		border-radius: 20px;
		padding: 20px 0 40px 0;
	}

	.feature_block li{
		width: 70%;
		font-size: 16px;
	}

	.feature_block img{
		max-width: 140px;
	}

	
	.performance {
		font-size: 14px;
	}

	.performance td {
		padding: 10px 2px;
		border-bottom: 2px solid #d3d3d3;
	}

	.performance_item{
		font-size: 16px;
	}

	.performance_tit{
		width: 28%;
	}
	
}


/* --側邊按鈕------------------------------------- */
.fixedRightBtn-area{
	position: fixed;
	top: 50%;
	right: 0%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	z-index: 999;
	display:none;
}

.fixedRightBtn a{
	display: block;
	text-align: center;
	width: 40px;
	color: #ffffff;
	padding: 14px 9px;
	box-sizing: border-box;
	font-size: 17px;
	line-height: 20px;
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	position: relative;
	left: 0%;
	margin-bottom: 5px;
	border-radius: 10px 0 0 10px;
}

.link{
	background: #3266a6;
}

.FB_link{
	background: #FF725C;	
}

.link:hover{
	background: #1c4d8a;	
}

.FB_link:hover{
	background: #df503a;	
}

@media screen and (max-width: 667px){
	.fixedRightBtn-area {
		top: auto;
		bottom: 0;
		width:100%;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		font-size: 0px;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		display:none;
	} 

	.fixedRightBtn a {
		display:inline-block;
		width: 50%;
		font-size: 18px;
		margin-bottom: 0px;	
		border-radius: 0;
	}
}

/* --基金公司警語------------------------------------- */

#company_attention{
	width: 100%;
	font-size: 16px;
	line-height: 1.5;
	text-align: justify;
	color:  #525252;
	background-color: #e9e9e9;
	padding: 40px 0;
}

.company_attention_text{
	max-width: 1140px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0 30px;
}

.company_attention_item{
	display: inline-block;
	padding-right: 40px;
}


@media screen and  (max-width:811px){
#company_attention{
	font-size: 16px;
}
}



/* --注意事項------------------------------------- */

.Attention_tit{
	padding: 60px 0 0 0;
}


@media screen and (min-width: 1200px) {
	#Promotions{
		width: 100%;
		text-align: center;
		background-color:#F7F8F8;
	}

	#Attention{
		margin: 0 auto;
		width: auto;
		padding-top: 40px;
		padding-bottom: 70px;
		text-align: left;
	}


	.Attention_title{
		width: 1000px;
		margin: 0 auto;
		font-size: 20px;
		font-weight: bold;
		letter-spacing:1.5px;
		color: #5e5e5e;
		padding-bottom: 10px;
		padding-top: 10px;
		text-align: left;		
	}

	.Attention_text li{
		width: 960px;
		margin: 0 auto;
		font-size: 18px;
		line-height: 1.5;
		color: #595757;
		list-style-type: square;
		text-align: justify;
	}	
}

@media screen and (min-width:668px) and (max-width: 1199px){
	#Promotions{
		width: 100%;
		text-align: center;
		background-color:#F7F8F8;
	}

	#Attention{
		margin: 0 auto;
		width: auto;
		padding-top: 50px;
		padding-bottom: 50px;
		text-align: left;
	}

	.Attention_title{
		width: 80%;
		margin: 0 auto;
		font-size: 20px;
		font-weight: bold;
		letter-spacing:1.5px;
		color: #5e5e5e;
		padding-bottom: 8px;
		padding-top: 8px;
		text-align: left;
		
	}

	.Attention_text li{
		width: 75%;
		margin: 0 auto;
		font-size: 18px;
		line-height: 1.5;
		color: #595757;
		list-style-type: square;
		text-align: justify;		
	}
}

@media screen and (max-width: 667px){
	#Promotions{
		width: 100%;
		text-align: center;
		background-color:#F7F8F8;
		padding-bottom:30px;
	}

	#Attention{
		margin: 0 auto;
		width: auto;
		padding-top: 40px;
		padding-bottom: 40px;
		text-align: left;
	}

	.Attention_title{
		width: 85%;
		margin: 0 auto;
		font-size: 16px;
		font-weight: bold;
		letter-spacing:1.5px;
		color: #5e5e5e;
		padding-bottom: 6px;
		padding-top: 6px;
		text-align: left;
		
	}

	.Attention_text li{
		width: 76%;
		margin: 0 auto;
		font-size: 16px;
		line-height: 1.5;
		color: #595757;
		list-style-type: square;
		text-align: justify;
	}
}


/* --footer------------------------------------- */
/*
footer {
	background: #3D3D3D;
	color: #F7F7F7;
	line-height: 1.8;
	margin:0;
	padding: 40px 0 50px;
	box-sizing: border-box;
}

footer > div {
	max-width: 1140px;
	margin: 0 auto;
	box-sizing: border-box;
	padding:0 30px;
}

footer > div > dl {
	padding: 10px 0 10px 1.5em;
	margin: 10px auto;
	border-top: 2px solid #F7F7F7;
	border-bottom: 2px solid #F7F7F7;
	display: block;
}
footer > div > dl dt,
footer > div > dl dd{
	margin: 0;
	line-height: 1.5;
	font-size: 16px;
	display: list-item;
}
footer > div > dl dt {
	list-style-type: square;
}

footer > div > dl dd:nth-of-type(even) {
	font-size: 16px;
}

footer > div > dl dd a,
footer > div > dl dt a {
	color: #F7F7F7;
	text-decoration: none;
}

footer > div > p {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	padding: 0;
	text-align: left;
	position: relative;
}
footer > div > p b{
	display: inline-block;
	padding: 0 0 0 16px;
}
footer > div > p > .socialBox{
	display: inline-block;
	text-align: right;
	position: absolute;
	right:0;
	bottom:0;
	z-index: 2;	
	letter-spacing: 5px;
	padding: 0;	
}
footer > div > p > .socialBox > a{
	display: inline-block;
}
footer > div > p > .socialBox > a i{
	font-size:30px;
	color:#c8a973;
}
footer > div > p > .socialBox > a:hover i{
	color:#b49560;
}
footer > div > p > .socialBox > a .footIcon{
	font-size:36px;
	height:36px;
	display: inline-block;
	vertical-align: 0;
	border:none;
}


footer > div > .text_scroll {
	overflow-y: scroll;
	overflow-x: hidden;
	height: 122px;
	width:100%;
	margin: 0;
	padding:0 16px 0 0;
	box-sizing: border-box;
}

footer > div > .text_scroll > p {
	margin: 0;
	font-weight:normal;
}

footer > div > .text_scroll span {
	color: #A89878;
	font-weight: bold;
}

.text_scroll{
	font-size: 15px;
}	

@media screen and (max-width: 669px){
	footer {
		padding: 20px 0;
		margin-bottom:48px;
	}
	footer > div > p {
		text-align: center;
	}
	footer > div > p b{
		display: block;
		padding: 0;
	}
	footer > div > p > .socialBox{
		display: block;
		text-align: center;
		position: relative;
		right:0;
		bottom:0;
		z-index: 1;	
		padding: 8px 0 0;
		letter-spacing: 16px;		
	}
	footer > div > p > .socialBox > a .footIcon{
		font-size:48px;
		height:48px;
		display: inline-block;
		vertical-align: 0;
		border:none;
	}

}

*/

