/* 通用*/
html, body {
	font-family:  'Open Sans', sans-serif, '黑體', "微軟正黑體";  /*背景*//*全螢幕*/
	
}
/*中間內容*/
.center1200 {
	width: 1000px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding: 0 100px;
	display: block;
}
.content {
	padding-top: 8%;
	padding-right: 2%;
	padding-left: 2%;
	width: 96%;
	height: 100%;
	position: relative;
	overflow: hidden;
	padding-bottom: 5%;
}

/* 螢幕等高 */
.vh100{ height:100vh;}

/*置中*/
.center {
	margin: 0 auto;
}

/* 浮動float*/
.left {
	float: left;
}
.right {
	float: right;
}
.clear {
	clear: both;
}

/* 定位 */
.rel {
	position: relative;
}
.abs {
	position: absolute;
}
.fix {
	position: fixed;
}
.z1{ z-index:1;}
.z-1{ z-index:-1;}
.z99{ z-index:99;}
.z999{ z-index:999;}
.z9999{ z-index:9999;}

/* 背景色 */
.bgwhite {
	background-color: #fff;
}
.bggray {
	background-color: #ececec;
}
.bgblack {
	background-color: #313131;
}
.bggold {
	background-color: #bda999;
}
.bggoldd {
	background-color: #998674;
}
.bgcomplexion {
	background-color: #faf5f0;
}
.bgbrown {
	background-color: #7a4a3a;
}
.bgorange {
	background-color: #f7965b;
}

/* 分隔線 */
.line {
	border-top: 1px inset #bda999;
	margin: 1% 0;
	clear: both;
}

/* 字色 */
.tgold {
	color: #bda999;
}
.tgoldd {
	color: #998674;
}
.tgray {
	color: #767676;
}
.twhite {
	color: #fff;
}
.tbrown {
	color: #7a4a3a;
}
.tblack {
	color: #313131;
}
.torange {
	color: #f7965b;
}

/*文字對齊*/
.tcter {
	text-align: center;
}
.tlef {
	text-align: left;
}
.trht {
	text-align: right;
}

/* 字級 */
.h0 {
	font-size: 80px;
	font-weight: lighter;
	line-height: 80px;
}
.h1 {
	font-size: 60px;
	font-weight: lighter;
	line-height: 70px;
}
.h2 {
	font-size: 40px;
	font-weight: lighter;
	line-height: 50px;
}
.h3 {
	font-size: 30px;
	font-weight: lighter;
	line-height: 35px;
}
.h4 {
	font-size: 20px;
	font-weight: lighter;
	line-height: 30px;
}
.h5 {
	font-size: 18px;
	font-weight: lighter;
	line-height: 25px;
}
.h6 {
	font-size: 16px;
	font-weight: lighter;
	line-height: 24px;
}
.p {
	font-size: 15px;
	line-height: 22px;
}
/* 字級間距 */
.ls2{
	letter-spacing: 0.2em;
}
.ls5{
	letter-spacing: 0.5em;
}
/*文字陰影*/
.tshad{
text-shadow:1px 1px 8px rgba(0,0,0,0.5);
}
/*通用end*/	
