@charset "utf-8";
/* CSS reset */
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;
}
ol, ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	max-width: 100%;
	height: auto;
	border: 0;
}
@media \0screen {
	img { width: auto;} /* for IE8 */
}
a {
	text-decoration: none;
    color: #fff;
    /*-webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;*/ /* For 4.0 Androids以下 */ 
}
body {
	line-height: 1;
}
/*********  下面2樣CLASS為測試用，可砍  *********/
.top { /*模擬手機瀏覽器最上方輸入欄位*/
    height: 3em;
    background-color: #eee;
    border: 1px solid #000;
}
#show { /*取得螢幕解析度*/
    color: #fee300;
    font-weight: bold;
    background-color: #000;
    border: 1px solid #fff;
    position: absolute;
    z-index: 99999999999999;
    padding: 0.5em;
    margin: 0.7em;
    -webkit-border-radius: 0.3em;
    -moz-border-radius: 0.3em;
    -ms-border-radius: 0.3em;
    -o-border-radius: 0.3em;
    border-radius: 0.3em;
}
/*********  以下為 網頁+手機畫面_共用設定  *********/
html {
    width: 100%;
    height: 100%;
}
body {
    /*height: 100%;*/
    background: #05253c;
    font-family: Arial, "微軟正黑體", "Microsoft JhengHei", "新細明體", "PMingLiU", Georgia, "Times New Roman", Times, serif;
}
input[type="text"], input[type="date"], input[type="button"], 
input[type="password"], select {
    /*height: 2.8em;*/
    padding: 0 8px;
    box-sizing: border-box;
    color: rgba(255,255,255,0.7);
}
input[type="text"], input[type="date"], input[type="button"], 
input[type="password"], select, textarea {
    font-family: Arial, "微軟正黑體";
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: none;
    -webkit-border-radius: 0.2em;
    -moz-border-radius: 0.2em;
    -ms-border-radius: 0.2em;
    -o-border-radius: 0.2em;
    border-radius: 0.2em;
    border: 0;
    font-size: 0.9em;
}
select, input[type="text"].select {
    color: #fff;
    background-image: url(../images/index_icon/icon_select.png);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    background-size: auto 20%;
}
/*Input 的 Placeholder 設定*/
::-webkit-input-placeholder { /* WebKit browsers:Chrome, Safari */
    color: #ccc;
    font-size: 1em !important;
    font-weight: normal;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #ccc;
    font-size: 1em !important;
    font-weight: normal;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #ccc;
    font-size: 1em !important;
    font-weight: normal;
}
::-ms-input-placeholder { /* IE 10+ */
    color: #ccc;
    font-size: 1em !important;
    font-weight: normal;
}
::placeholder { /* CSS 3 標準 */
    color: #ccc;
	font-size: 1em !important;
}

/* 寬度小於 1023px (平板+手機)*/
@media screen and (max-width: 1023px) {
    /*Input 的 Placeholder 設定*/
	::-webkit-input-placeholder {
	    font-size: 15px !important;
	}
	:-moz-placeholder {
	    font-size: 15px !important;
	}
	::-moz-placeholder {
	    font-size: 15px !important;
	}
	::-ms-input-placeholder {
	    font-size: 15px !important;
	}
	::placeholder {
	    font-size: 15px !important;
	}
}