@charset "UTF-8";
/* CSS Document */

/* ---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,
table, caption, tbody, tfoot, thead, tr, th, td,
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;
	font-size: 100%;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.6;
}


/*ol, ul {
	list-style: none;   
}
li{
	list-style: none;   
}*/

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ---reset.css--- */
	
a:link, a:active, a:visited {
    text-decoration: none;  
}

a:hover {
    opacity: 0.8;
	cursor: pointer;
    /*font-weight: bold;*/
}
	
*{
    border: 0;
    padding: 0;
    margin: 0;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
	text-decoration: none; 
}



body{
	color: #000;
	font-family:"Yuanti TC Regular", STHeiti, "PingFang SC Regular";
	font-size: 16px;
	vertical-align: top;
	background-color: #fff;
}


.container{
	width:80%;
	margin: 80px auto;
}

.privacy_title{
	font-size: 1.2em;
	color: #007b15;
}

.privacy_date{
	font-size: 0.8em;
	margin: 0px 0px 15px 0px;
	color: #7f7f7f;
}


.privacy_h3{
	font-size: 1em;
}

.privacy_p{
	margin: 0px 0px 15px 0px;
	font-size: 0.85em;
	color: #666;
}






/* --手機版型------------------------------------- */
@media screen and (max-width: 767px) {
	
	*{
		box-sizing :border-box; /* 讓 padding 與 width 解除關係 */
	}
	
	html,body{
		-webkit-text-size-adjust:none; /* iPhone 旋轉後 文字不要放大 */
	}
	
	.container{
		width: 90%;
		margin: 50px auto;
	}
	
	
	
}