@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;500;700;900&family=Noto+Serif+TC:wght@300;500;700;900&display=swap');
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: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

body {
    font-family: 'Noto Sans TC',sans-serif;
    margin: 0;
    padding: 0;
    color:#444;
    font-size: 16px;
    position: relative;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    padding-left: 0;
    list-style: none
}

.list-inline>li {
    display: inline-block;
    padding-left: 8px;
    padding-right: 8px;
}

img {
    border: 0;
    width: 100%;
    height: auto;
    display: block;
    /*li 間隙*/
}

a {
    color: inherit;
    text-decoration: none;
    display: block;
}
small,b{
    display: block;
}
small {
    font-size: 12px;
}

textarea:focus,
input:focus{
    outline: none;
}

.publicFlex{
    display: flex;
}
/*load--------------------------------------------------------------------------------------------------------------------*/
.publicLoad {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s 0.8s ease-out;
}
.publicLoad.active>div,
.publicLoad.active {
    opacity: 1;
    visibility: visible;
    transition: all 0.6s ease-out;
}
.publicLoad>div {
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s 0.6s ease-out;
    /* display: inline-block; */
    width: 30px;
    height: 30px;
    border: 4px solid #666;
    animation: loader 2s infinite ease;
}
.publicLoad>div::after{
    content: '';
    vertical-align: bottom;
    display: block;
    width: 100%;
    background-color: #666;
    animation: loader-inner 2s infinite ease-in;
}
@keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    
    25% {
        transform: rotate(180deg);
    }
    
    50% {
        transform: rotate(180deg);
    }
    
    75% {
        transform: rotate(360deg);
    }
    
    100% {
        transform: rotate(360deg);
    }
}
@keyframes loader-inner {
    0% {
        height: 0%;
    }
    
    25% {
        height: 0%;
    }
    
    50% {
        height: 100%;
    }
    
    75% {
        height: 100%;
    }
    
    100% {
        height: 0%;
    }
}
/*puplicError*/
.puplicError{
    font-size: 12px;
    font-family: 'Noto Sans TC',sans-serif;
    font-weight: 100;
    padding: 2px 6px;
    border-radius: 3px;
    background: red;
    color: #fff;
    position: absolute;
    z-index: 1;
    left: 4px;
    bottom: 4px;
}
/*overlaymodal*/
.overlaymodal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    overflow: auto;
    display: flex;
    justify-content: center;
    z-index: 99;
    /*display: none;*/
}

.overlaymodal input:focus {
    outline: none;
}

.overlaymodal .box {
    z-index: 10;
    /*width: 300px;*/
    min-width: 500px;
    /*height: 190px;*/
    background: #fff;
    padding: 30px;
    position: absolute;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    border-radius: 6px;
    margin: 60px 0;
    /* display: none; */
}

.overlaymodal .top {
    /*text-align: right;*/
    display: flex;
    justify-content: space-between;
}

.overlaymodal .top h4 {
    font-size: 28px;
    margin: 0;
    font-weight: bold;
    color: rgb(68, 68, 68);
}

.overlaymodal .top h4 p {
    font-size: 16px;
    font-weight: normal;
}

.overlaymodal .top i {
    font-size: 20px;
    opacity: .5;
    cursor: pointer;
}

.overlaymodal .top i:hover {
    opacity: 1;
}

.overlaymodal .middle {
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    min-height: 120px;
    padding: 30px 0 0;
    font-size: 15px;
}



.overlaymodal form {
    width: 100%;
}

.overlaymodal .form-group {
    margin-bottom: 1rem;
}

.overlaymodal .position-relative {
    position: relative!important;
}

.overlaymodal .file {
    margin-top: 6px;
}

.overlaymodal .d-flex {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
}

.overlaymodal .align-items-end {
    -webkit-box-align: end!important;
    -ms-flex-align: end!important;
    align-items: flex-end!important;
}

.overlaymodal .pl-3,
.overlaymodal .px-3 {
    padding-left: 1rem!important;
}

.overlaymodal .row {
    margin-right: -10px;
    margin-left: -10px;
    display: flex;
}

.overlaymodal [class^='col-'] {
    padding-right: 10px;
    padding-left: 10px;
}

.overlaymodal form .col-3+.col-9 {
    padding-left: 0;
    display: flex;
    align-items: center;
}

.overlaymodal .col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.overlaymodal .col-3 {
    /* -webkit-box-flex: 0;
    -ms-flex: 0 0 25%; */
    /* flex: 0 0 25%; */
    width: 100px;
}

.overlaymodal .col-9 {
    /* -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%; */
    width: calc(100% - 100px);
    position: relative;
}

.overlaymodal .col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.overlaymodal .col-form-label {
    letter-spacing: 1px;
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}

.overlaymodal .form-control {
    display: block;
    width: 100%;
    height: 38px;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    /*border-radius: .25rem;*/
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.overlaymodal textarea.form-control {
    min-height: 80px;
}

.overlaymodal .invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1;
    color: #fff;
    background-color: rgba(220, 53, 69, .8);
    border-radius: .2rem;
}

.overlaymodal .form-check-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: .75rem;
    /* padding-top: .5rem!important; */
}

.overlaymodal form .customErroe {
    position: absolute;
    color: red;
}

.overlaymodal .text-muted {
    color: #6c757d!important;
    display: block;
    margin-top: .25rem;
    font-size: 80%;
    font-weight: 400;
}

.overlaymodal .custom_checkbox {
    display: flex;
    flex-wrap: wrap;
}

.overlaymodal .custom_checkbox div {
    display: inline-block;
    padding-right: 10px;
}
/*myForm--------------------------------------------------------------------*/
.myForm{
    margin-top: 30px;
}
.myForm>div{
    margin-bottom: 15px;
    display: flex;
    align-items: center;
} 
.myForm>div>label{
    flex: 0 0 100px;
    font-size: 14px;
}
.myForm>div>label+div{
    flex: 1 1;
    display: flex;
    position: relative;
    align-items: center;
}
.myForm>div>label+div>input[type="password"],
.myForm>div>label+div>input[type="text"]{
    display: block;
    width: 100%;
    height: 38px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
}
.myForm>div>label+div>label+input[type="radio"]{
    margin-left: 10px;
}
.myForm>div>label+div>input[type="file"],
.myForm>div>label+div>input[type="hidden"]{
    border: none;
    padding: 6px 0;
}
.myForm>div>label+div.is_Release>div+div{
    margin-left: 10px;
}
.myForm>div>label+div.is_Release>div label{
    font-size: 14px;
}
.myForm .bottom {
    display: flex;
    justify-content: flex-end;
}

.myForm .bottom button {
    border-radius: 0;
    padding: 8px 20px;
    border-radius: 0.2rem;
}

.myForm .bottom button:last-child {
    color: #fff;
    background-color: #c30e22;
    margin-left: 5px;
    border: 1px solid #c30e22;
}

.myForm .bottom button:focus {
    outline: none;
}
.myForm .puplicError{
    left: 0;
    bottom: -15px;
}
.myForm .imgDiv .img,
.myForm .imgDiv.active input[type="file"]{
    display: none;
}
.myForm .imgDiv.active .img{
    border: 1px solid #ced4da;
    position: relative;
    border-radius: 4px;
    display: inline-block;
    padding: 5px;
    max-width: 110px;
}
.myForm .imgDiv.active .img i{
    position: absolute;
    top: -6px;
    right: -10px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #ced4da;
    cursor: pointer;
    width: 25px;
    height: 25px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.myForm.message .bottom{
    display: flex;
    justify-content: flex-end;
}
.myForm.message .bottom button{
    border-radius: 0;
    padding: 8px 20px;
    border-radius: 0.2rem;
}
.myForm.message .bottom .btn {
    display: block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.42857;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    text-decoration: none;
    color: #666;
    border: 1px solid #ccc;
    text-decoration: none;
    background: #ffffff;
    border-radius: 0;
    /* transition: color .5s ease; */
    border-radius: 3px;
}
.myForm.message .bottom .btn:hover,
.myForm.message .bottom .btn.active {
    background-color: #c30e22;
    border: 1px solid #c30e22;
    color: #fff;
}