@import url(//fonts.googleapis.com/earlyaccess/notosanstc.css);
body{
    /* 先套用 Noto Sans TC 這個 思源黑體 */
    font-family: 'Noto Sans TC', '微軟正黑體', sans-serif;
    font-size: 16px;
    color: #000;
    margin: 0;
    padding: 0;
}
:focus {
	outline: 0;
}
html, body {
    height: 100%;
    margin: 0;
}
body {
	line-height: 1;
}
.wrapper{
    flex-grow: 1; /*可佔滿垂直剩餘的空間*/
    position: relative;
    height: 100%;
    background-image: url(../img/bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.wait_box{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.wait_box h3{
    color: #333;
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 10px 0;
    line-height: 1.5em;
}
.wait_box h4{
    color: #333;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    border-bottom: 2px solid #BD9D5D;
}
.wait_box h4 strong{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 50px;
    color: #BD9D5D;
    font-weight: 300;
}
.wait_box .gif{
    border-radius: 50%;
    background-color: rgba(0,0,0,.05);
    width: 150px;
    height: 150px;
    padding: 10px;
    position: relative;
    margin: 20px auto 10px auto;
}
.wait_box .gif img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
@media screen and (max-width:768px){
	.wait_box h3{
		font-size:24px;
	}
}