/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
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;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font-size: 18px;
  line-height: 2rem;
}

.warp {
  margin: 0 auto;
  width: 80%;
}
.warp ul {
  list-style: none;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.warp ul li {
  width: 10%;
  margin-bottom: 20px;
  font-size: 16px;
}
@media screen and (max-width: 1440px) {
  .warp ul li {
    width: 12.5%;
  }
}
@media screen and (max-width: 1200px) {
  .warp ul li {
    width: 16.6%;
  }
}
@media screen and (max-width: 1024px) {
  .warp ul li {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  .warp ul li {
    width: 50%;
  }
}





.title {
  margin-top: 30px;
  padding-bottom: 20px;
  font-size: 22px;
  font-weight: bold;
  color: #202124;
  text-align: left;
  line-height: 1.5rem;
  border-bottom: 1px solid #999;
}

.title {
  color: var(--theme-primary);
}


.main-title {
  font-weight: bold;
  color: #FF7866;
  margin-top: 10px;
  margin-bottom: 10px;
}
.main-link {
  margin-bottom: 10px;
}

.main-link a {
  color: #8AB4F8;
}
.main-link a:hover {
  color: #ff9f00;
}

a,
a:link,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
.index_div {
  position: fixed;
  visibility: visible;
  z-index: 2;
  margin: 0px;
}

.div_right_bottom {
  width: 400px;
  float: right;
  position: fixed;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  _position: absolute; /* position fixed for IE6 */
}

body {
  --theme-background: #FFF;
}

body {
  font-family: "微軟正黑體";
  background-color: var(--theme-background);
}

@media (prefers-color-scheme: dark) {
  body {
    --theme-background: #202124;
    --theme-primary: #FFF;
  }
}

#form {
  float: right;
  position: fixed;
  right: 0px;
  bottom: 0px;
  z-index: 20;
}
