@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);

/* CSS Document */
/* allpage */
/* all */
body::-webkit-scrollbar {
    display: none;
}

::-webkit-scrollbar {
    display: none;
    /*隱藏滾輪*/
}

input,
textarea {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

#loading {
    background: #ffffffc4;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.loadingImage {
    position: relative;
}

html {
    width: 100vw;
    height: 100svh;
    overflow-x: hidden;
}

body {
    width: 100vw;
    height: 100svh;
    margin: 0;
    font-family: 'Noto Sans TC', sans-serif;
    background-image: url(../img/body_bg.jpg);
    box-sizing: border-box;
}

div{
    box-sizing: border-box;
}

ul {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration-line: none;
    cursor: pointer;
}

button {
    border: none;
    padding: 0;
}

.fff {
    float: left;
}

.fffright {
    float: right;
}

.gray {
    color: #8f8f8f;
}

.pink {
    color: #ca766a;
}

.margin-top {
    margin-top: 20px;
}

.margin-top-2 {
    margin-top: 8px;
}

.margin-bottom {
    margin-bottom: 20px;
}

.margin-right {
    margin-right: 3px;
}

.margin-left {
    margin-left: 3px;
}

.boxsize {
    box-sizing: border-box;
}

input::placeholder {
    color: #acacac;
}

.hide {
    display: none;
}

.tcenter {
    text-align: center;
}

.block {
    display: block;
}

.disabled {
    cursor: not-allowed;
}
@media screen and (min-width:768px) and (max-width:1919px) {
    .pc-hide{
        display: none;
    }
    .sm-hide{
        display: block;
    }
}
@media screen and (max-width:767px) {
    .pc-hide{
        display: none;
    }
    .sm-hide{
        display: block;
    }
}