body * {
    /*box-sizing: border-box;*/
    flex-shrink: 0;
}
body {
    font-family: 'Noto Serif TC', serif;
    position: relative;
    margin: 0 !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
input {
    background-color: transparent;
    border: 0;
}
button {
    margin: 0;
    padding: 0;
    border: 0.1em solid transparent;
    outline: none;
    background-color: transparent;
}

button:active {
    opacity: 0.6;
}
.flex-col {
    display: flex;
    flex-direction: column;
}
.flex-row {
    display: flex;
    flex-direction: row;
}
.justify-start {
    display: flex;
    justify-content: flex-start;
}
.justify-center {
    display: flex;
    justify-content: center;
}

.justify-end {
    display: flex;
    justify-content: flex-end;
}
.justify-evenly {
    display: flex;
    justify-content: space-evenly;
}
.justify-around {
    display: flex;
    justify-content: space-around;
}
.justify-between {
    display: flex;
    justify-content: space-between;
}
.align-start {
    display: flex;
    align-items: flex-start;
}
.align-center {
    display: flex;
    align-items: center;
}
.align-end {
    display: flex;
    align-items: flex-end;
}
select {
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: url(https://cdn-web.pristontalem-fow.com/resources/site/pre/images/tw/icon/uk5.png);
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: 100% 50%;
    padding: 0 20px 0 5px;
}
select, input, button {
    /*width: 100%;*/
    font-family: 'Noto Serif TC', serif;
    font-size: 0.8rem;
    color: #000000;
    height: 2em;
    /*line-height: 40px;*/
    border-radius: 0.3em;
    /*background-color: #fff;*/
    padding: 0 1em;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    font-weight: 600;
    outline: 0;
}

button{
    padding: 5px 16px;
    color: #000000d9;
    border: 0.01em solid #000000;
    /*background-color: transparent;*/
    border-radius: 0.2em;
    line-height: 1.4;
    box-shadow: 0 0.2em #00000004;
    cursor: pointer;
    transition: .3s;
}

