/*******preloader*********/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: block;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 rgba(255,255,255,1)
}

.spinner {
	font-family: "Noto Sans TC","é»‘é«”-ç¹",'å¾®è»Ÿæ­£é»‘é«”',Verdana,Geneva,sans-serif;
    border: 1px solid transparent;
    border-radius: 3px;
    width: 250px;
    height: 250px;
    position: relative;
    left: 50%;
    top: 50%;
    margin: -125px 0 0 -125px
}

.spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 128px;
    height: 72px;
    margin-top: -50px;
    margin-left: -64px;
    display: inline-block;
    vertical-align: middle;
	  background-image: url(../../image/loading.gif);
    background-size: cover
}

.spinner_loading {
    width: 100%;
    height: 0;
    font-size: 1.75em;
    font-weight: 600;
    color: #f86aaa;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    padding-top: 60%
}

.spinner span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #fc66a3;
    margin: 35px 5px
}



