﻿@charset "UTF-8";
:root {
  --bgcolor-darkblue: #0B74A5;
  --bgcolor-lightblue: #ECF7FC;
  --color-darkblue: #0B74A5;
  --color-lightblue: #ECF7FC;
  --color-br: #C48D32;
  --color-r: #E4002C;
  --color-g: #008659;
  --color-o: #F8B616;
  --color-bl: #0070BD;
  --color-y: #FFDA00;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1;
}

html {
  font-size: 62.5%;
}

html, body {
  min-height: 100vh;
}

body {
  position: relative;
  overflow-x: hidden;
}

body > * {
  font-family: "PingFang TC", "Heiti TC", "LantingHei TC", "LiHei Pro", "微軟正黑體", "Noto Sans TC", "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

img {
  max-width: 100%;
  vertical-align: top;
}

.only-mobile {
  display: block !important;
}

.only-desktop {
  display: none !important;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

@media only screen and (min-width: 769px) {
  .only-mobile {
    display: none !important;
  }
  .only-desktop {
    display: block !important;
  }
  .container {
    max-width: 1200px;
  }
}
.form-control,
.btn {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
}

.section__title {
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  width: fit-content;
  margin: 2rem auto 3rem auto;
}

.page__title.section__title {
  margin: 2.5em auto 2em;
}

@media only screen and (min-width: 769px) {
  .section__title {
    font-size: 2.6rem;
    margin: 3rem auto;
  }
}
.section__title::after {
  content: "";
  position: absolute;
  bottom: -0.5em;
  left: 0;
  right: 0;
  margin: 0 auto;
  /*width: 50%;*/
  max-width: 7.2rem;
  height: 3px;
  background: linear-gradient(to right, #40AF36 0%, #40AF36 50%, #007AB0 50%);
}

@media only screen and (min-width: 769px) {
  .section__title::after {
    max-width: 8.8rem;
  }
}
.line__bg {
  color: #000;
  background-color: #fff;
}

.lineBR__color {
  color: var(--color-br);
}

.lineBR__bg {
  background-color: var(--color-br);
  color: #fff;
}

.lineR__color {
  color: var(--color-r);
}

.lineR__bg {
  background-color: var(--color-r);
  color: #fff;
}

.lineG__color {
  color: #008659;
}

.lineG__bg {
  background-color: #008659;
  color: #fff;
}

.lineO__color {
  color: var(--color-o);
}

.lineO__bg {
  background-color: var(--color-o);
  color: #343434;
}

.lineBL__color {
  color: var(--color-bl);
}

.lineBL__bg {
  background-color: var(--color-bl);
  color: #fff;
}

.lineY__color {
  color: var(--color-y);
}

.lineY__bg {
  background-color: var(--color-y);
  color: #343434;
}

.layout__text,
.layout__list li {
  font-size: 1.6rem;
  line-height: 1.7;
}

@media only screen and (min-width: 769px) {
  .layout__text,
  .layout__list li {
    font-size: 2rem;
    line-height: 1.7;
  }
}
.layout__link {
  color: var(--color-darkblue);
  font-size: 2rem;
}

.layout__text {
  margin: 2rem 0;
}

.layout__list,
.layout__list ul {
  margin: 0 2rem;
}

.download__area {
  margin: 2rem 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 2rem;
}

.download__area .download__item {
  display: inline-block;
  position: relative;
  flex: 0 0 fit-content;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-darkblue);
  border: 1px solid var(--color-darkblue);
  border-radius: 0.5rem;
  padding: 2rem 3rem 2rem 4.6rem;
  text-align: center;
  background-color: transparent;
}

.download__area .download__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--bgcolor-lightblue);
  z-index: -2;
  transition: 0.3s;
  border-radius: 0.5rem;
}

.download__area .download__item:hover::after {
  width: 100%;
}

.download__area .download__item::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  background-image: url(../images/icon_download.svg);
  background-repeat: no-repeat;
  width: 1.6rem;
  height: 1.6rem;
  background-size: contain;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: translateX(100%);
}

.realstatus__wrap {
  flex: 1;
  text-align: left;
  padding: 0 1rem 3rem 0;
}

#UpdatePanelStatus {
  padding: 5px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.realstatus__img {
  flex: 0 0 fit-content;
  padding-right: 0.5rem;
}

.realstatus__img img {
  width: 1.8rem;
}

.realstatus__text {
  flex: 0 0 fit-content;
  font-size: 1.8rem;
  font-weight: bold;
  color: #43A638;
  line-height: 1.3;
}

.realstatus__text.close {
  color: #C3C3C3;
}

.realstatus__text.abnormal {
  color: #D3132C;
}

.abnormal__link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.abnormal__wrap {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0 auto;
  width: 100%;
  padding: 0;
  background-color: #FFF;
}

.realstatus__abnormalwrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 2rem 2rem;
  padding: 0 1rem;
}

.realstatusdetail__item {
  flex: 0 0 40%;
  padding: 2rem 1rem;
  border: 1px solid #BEBEBE;
  border-radius: 2rem;
}

.realstatusdetail__line {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #000;
  word-break: keep-all;
}

.realstatusdetail__item .realstatus__img {
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  padding-right: 0;
}

.realstatusdetail__item .realstatus__img img {
  width: 3rem;
}

.realstatus__desc {
  padding: 1em 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.realstatus__text {
  padding: 0;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.3;
}

.realstatus__text li {
  list-style-type: disc;
  padding-bottom: 0.5rem;
  line-height: 1.1;
}

.realstatus__text.abnormal {
  padding: 1rem 2em;
  color: #D3132C;
}

.abnormal__wrap ~ .realstatus__desc .realstatus__text {
  font-size: 2.2rem;
}

.abnormaltext__wrap {
  flex: 0 0 100%;
}

@media only screen and (min-width: 769px) {
  .abnormal__wrap {
    background-color: #FFF;
    max-width: 1200px;
  }
  .realstatus__abnormalwrap {
    gap: 0 4rem;
    flex-wrap: nowrap;
    padding: 2rem 0;
  }
  .realstatusdetail__item {
    flex: 1 1 20%;
  }
}
.realstatus__desc a:visited {
  color: blue;
}

.updatedatetime {
  font-size: 1.4rem;
  color: #666666;
  text-align: right;
}
