@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&display=swap";

:root {
  /* 裝置尺寸 */
  --large-screen: 1280px;
  --medium-screen: 800px;
  --small-screen: 375px;

  /* 顏色 */
  --tmgo-color: #ffaf00;
  --main-color: #048080;
  --btn-color: #359b9b;
  --secondary-color: #005a5a;

  --main-primary-color: #285ee4;
  --secondary-light-color: #658ae6;
  --secondary-dark-color: #2E4A8F;

  --vaild-color: #FF0000;
  --footer-color: #707070;

  --attention-color: #e4b849;
  --attention-hover-color: #D29701;
  --btn-danger-color: #df0f0f;

  /* 文字 */
  --font-size-20: 20px;
  --vaild-font-size: 14px;
  --font-500: 500;
  --font-600: 600;

  --box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  --primary-box-shadow: 0 3px 6px 0 rgba(41, 99, 175, 0.16);
  --btn-shadow: 2px 4px 10px 0 rgba(53, 155, 155, .25);
  --btn-shadow-attention: 0 3px 6px 0 rgba(228, 184, 73, 0.16);
}


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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  font-family: noto sans tc, sans-serif;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  outline-offset: none;
}

.hide {
  display: none !important;
}


/* 預設 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #fff inset !important;
  -webkit-text-fill-color: #000 !important;
}

html,
body {
  width: 100%;
  height: 100%;
}

#app {
  /* overflow: hidden; */
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.scrolled {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.main-container {
  margin: 90px auto 0;
  padding: 0 16px;
}


#app.modal_blur .main-content>div {
  filter: blur(8px);
}

#app.modal_blur~.blocker {
  background: transparent;
}

.not-user-select {
  -moz-user-select: none;
  /* Firefox */
  -webkit-user-select: none;
  /* Chrome, Safari */
  -ms-user-select: none;
  /* IE10 */
  -o-user-select: none;
  /* Opera */
  -khtml-user-select: none;
  /* 古早瀏覽器 */
  user-select: none;
  /* 標準寫法 */
}