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;
}

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;
}

a {
  color: #56616f;
  text-decoration: none;
}

body {
  background: #eceff0;
}

#miaoli {
  transition: margin-left 0.5s;
}

.list {
  height: 30px;
  display: none;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .list {
    display: inline-block;
    width: 30px;
  }
}

.header {
  background-image: url("../img/taitung-banner.png");
  height: 150px;
  background-size: 100%;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
  display: flex;
}
@media (max-width: 767px) {
  .header {
    height: 114px;
    background-size: auto;
  }
}
.header .headercontent {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-around;
}
.header .headercontent .title {
  display: flex;
  align-items: center;
  width: 80%;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .header .headercontent .title {
    margin-left: 2%;
  }
  .header .headercontent .title span {
    display: block;
  }
}
.header .headercontent .title .logo {
  width: 70px;
  height: 70px;
  border-radius: 1em;
}
.header .headercontent .title p {
  font-size: 30px;
  color: #006396;
  font-weight: 500;
  padding-left: 30px;
  text-shadow: 2px 0 0 #fff, 0 -2px 0 #fff, 0 2px 0 #fff, -2px 0 0 #fff;
}
@media (max-width: 767px) {
  .header .headercontent .title p {
    font-size: 1.2em;
    padding-left: 0.5em;
  }
}

.login {
  cursor: pointer;
  background: #006396;
  border: 0px;
  border-radius: 10px;
  padding: 0.5em 3em;
}
.login:hover {
  background: #0f4965;
}
.login svg {
  width: 80px;
}

.content {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  margin-bottom: 30px;
}
.content .left {
  background: white;
  width: 33.3333333333%;
}
@media (max-width: 767px) {
  .content .left {
    position: fixed;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    z-index: 1;
    overflow-x: hidden;
    transition: 0.5s;
  }
}
.content .left .weblink {
  padding: 20px 0px 10px 40px;
  color: #656565;
  font-weight: 500;
  width: 70%;
  margin: auto;
}
.content .left .list-bg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eaf8f8;
  color: #56616f;
  margin-bottom: 10px;
  padding: 3% 10%;
}
.content .left .list-bg span {
  display: inline-flex;
  align-items: center;
}
.content .left .list-bg .img-sm {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}
.content .left .list-bg a {
  text-align: center;
}
.content .left .list-bg .appdownloadbtn {
  display: none;
}
.content .left .logosearch {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.content .left .miaoliqrcode {
  width: 90px;
  margin: 0 10px;
}
.content .left .downloadlink {
  height: 40px;
  margin: 3px 0;
}
.content .left .searchbar {
  width: 120px;
  margin-top: 5px;
}
.content .left ul.website {
  width: 100%;
  margin: auto;
}
.content .left li:hover {
  background-color: #eaf8f8;
}
.content .left li:hover a:link,
.content .left li:hover a:visited {
  color: #0ca69c;
}
.content .left .qrcode {
  display: flex;
  justify-content: space-between;
}
.content .left .qrcode span {
  display: inline-block;
  width: 50%;
  margin-right: 3%;
  flex: 1;
  text-align: center;
}
.content .left .qrcode span img:nth-child(2) {
  width: 100px;
  height: 35px;
  display: block;
  margin-top: 5px;
}
.content .left .qrcode span img:nth-child(1) {
  width: 100px;
  height: 100px;
}
.content .left .qrcode img {
  width: 100%;
}
.content .left .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  display: none;
}
@media (max-width: 767px) {
  .content .left .closebtn {
    display: inline-block;
  }
}
.content .left .closebtn img {
  width: 15px;
}
.content .right {
  width: 66.6666666667%;
  height: 100vh;
  padding: 10px 10px;
}
@media (max-width: 767px) {
  .content .right {
    width: 100%;
  }
}
.content .right .Announcement {
  background: white;
  border-radius: 5px;
  padding: 1em;
}
@media (max-width: 767px) {
  .content .right .Announcement {
    height: auto;
  }
}
.content .right .Announcement .announce-list {
  font-size: 1.05em;
}
.content .right .Announcement .announce-list li ul {
  display: flex;
}
.content .right .Announcement .announce-list li ul:hover {
  background-color: #eaf8f8;
  cursor: pointer;
}
.content .right .Announcement .announce-list li ul li {
  padding: 0.8em 0.2em;
  box-sizing: border-box;
}
.content .right .Announcement .announce-list li ul li:nth-child(1) {
  width: 15%;
}
.content .right .Announcement .announce-list li ul li:nth-child(2) {
  width: 73%;
}
.content .right .Announcement .announce-list li ul li:nth-child(3) {
  width: 12%;
  text-align: right;
}
.content .right .Announcement .announce-list li.thead ul {
  background-color: #eaf8f8;
  color: #218881;
}
@media (max-width: 767px) {
  .content .right .Announcement .announce-list li.thead {
    display: none;
  }
}
@media (max-width: 767px) {
  .content .right .Announcement .announce-list li.tbody ul {
    padding: 1em 0;
    flex-wrap: wrap;
    border-bottom: 1px solid #efefef;
  }
}
@media (max-width: 767px) {
  .content .right .Announcement .announce-list li.tbody li {
    padding: 0.3em;
  }
}
.content .right .Announcement .announce-list li.tbody li:nth-child(1) {
  color: #868686;
}
@media (max-width: 767px) {
  .content .right .Announcement .announce-list li.tbody li:nth-child(1) {
    min-width: auto;
    width: auto;
    order: 1;
  }
}
.content .right .Announcement .announce-list li.tbody li:nth-child(2) {
  color: #656565;
  font-weight: 500;
}
@media (max-width: 767px) {
  .content .right .Announcement .announce-list li.tbody li:nth-child(2) {
    order: 3;
    width: 100%;
  }
}
.content .right .Announcement .announce-list li.tbody li:nth-child(2) span {
  width: 100%;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.content .right .Announcement .announce-list li.tbody li:nth-child(3) {
  color: #656565;
  font-weight: 500;
}
@media (max-width: 767px) {
  .content .right .Announcement .announce-list li.tbody li:nth-child(3) {
    min-width: auto;
    width: auto;
    order: 2;
    color: #868686;
    font-weight: 400;
  }
}

.link {
  padding: 0 15%;
}
.link span {
  padding-left: 10px;
}
.link img {
  height: 30px;
}
.link a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #656565;
  padding: 15px 10px;
  width: 100%;
}

hr {
  height: 1px;
  background-color: #d8d8d8;
  width: 95%;
  border: none;
}

.footer {
  width: 100%;
  height: 40px;
  background: #d6dfef;
  color: #405880;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  position: fixed;
  bottom: 0;
}
.footer p {
  margin: 20px;
}

.app {
  display: flex;
  justify-content: space-between;
  background-color: #eaf8f8;
  color: #56616f;
  padding: 30px;
}

.appicon {
  width: 70px;
}

.miaolieschool {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 140px;
}

.search {
  background-image: url(../img/search.png);
  background-size: 100% 100%;
  width: 150px;
  height: 30px;
  line-height: 30px;
}

.search p {
  margin-left: 10px;
}

#black {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
  display: none;
}

.bulletintitle {
  color: #218881;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  width: 90%;
}

.back {
  color: white;
  width: 80px;
  height: 36px;
  background-color: #cccccc;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.titlebutton {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.date {
  color: #868686;
  padding-bottom: 10px;
}

.bulletincontent {
  color: #656565;
  line-height: 25px;
  padding-bottom: 10px;
}

.referencesurl {
  padding-bottom: 10px;
}

.url {
  color: #218881;
}

.smalltitle {
  color: #218881;
  font-weight: 500;
  min-width: 3em;
  display: inline-block;
}

.appendix {
  display: flex;
  margin-bottom: 50px;
}

.appendixbtn {
  padding: 3px 10px;
  font-size: 15px;
  color: #218881;
  border: #218881 solid 1px;
  background-color: #eaf8f8;
  border-radius: 20px;
  margin-bottom: 5px;
  cursor: pointer;
}

.appendixbtn:hover {
  background-color: white;
}

#black {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
  display: none;
}

@media screen and (max-width: 1280px) {
  .content .left .list-bg .downloadlink {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .right {
    width: 100%;
    height: 80vh;
  }
  .link {
    padding: 0px 5%;
  }
  .weblink {
    width: 100%;
    padding-left: 10%;
  }
  .black {
    display: none;
    z-index: 1;
  }
  .footer {
    font-size: 10px;
  }
  .line {
    padding: 0 5%;
  }
  .line a {
    text-align: center;
  }
  .footer {
    flex-direction: column;
    height: 60px;
  }
  .footer p {
    margin: 3px 0;
  }
  .search {
    width: 100px;
    height: 20px;
    line-height: 20px;
    font-size: 10px;
  }
  .app {
    padding: 10px;
    align-items: center;
  }
  .qrcode {
    flex-wrap: wrap;
    justify-content: center;
  }
  .qrcode span {
    display: block;
    width: 100%;
    margin-right: 0;
    flex: 0;
    text-align: center;
  }
  .qrcode span img:nth-child(2) {
    width: 100px;
    height: 35px;
    display: block;
    margin-top: 5px;
  }
  .qrcode1 {
    display: none;
  }
  .miaolieschool {
    height: 116px;
  }
  .logo {
    width: 40px;
    height: 40px;
  }
  .login {
    padding: 0em 1em;
  }
  .login svg {
    width: 60px;
  }
  .content .left .list-bg .miaoliqrcode {
    display: none;
  }
  .content .left .list-bg .downloadlink {
    display: none;
  }
  .content .left .list-bg .appdownloadbtn {
    display: block;
    background-color: #0ca69c;
    border-radius: 5px;
    border: none;
    padding: 0.5em 0.7em;
    margin-left: 0.5em;
    color: #fff;
    font-size: 12px;
  }
}
.hidden-mobile {
  display: block;
}
@media screen and (max-width: 767px) {
  .hidden-mobile {
    display: none;
  }
}

.visible-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .visible-mobile {
    display: block;
  }
}

.reset-tag, .reset-tag * {
  all: revert;
}/*# sourceMappingURL=all.css.map */