#demo {
  position: fixed;
  font-size: 9pt;
  top: 0;
  left: 0;
  z-index: 9999999999;
  background-color: rgba(255,255,255,0.85);
  display: none;
}

:root {
    --type_A: #6BA767;
    --hover_link: #6BA767;
}

.bg_index {
  width: 100%;
  height: 100px;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
  z-index: 2;
}

  .bg_index.type_A {
    background-color: var(--type_A);
  }


.bg_index_img {
  width: 100%;
  height: 100%;
  position: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.20;
  z-index: 1;
  filter: blur(2px);
}

  .bg_index_img.type_A {
    /*background-image: url(../image/bg_001.jpg);*/
  }


  .bg_index_img.type_pwd {
    filter: grayscale(100%) blur(2px);
    opacity: 0.15;
  }

.container {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0 auto;
  /*overflow: hidden;*/
  text-align: center;
  padding: 40px 120px 0 0;
}
/***login***/
.header_column {
  display: inline-block;
  width: 600px;
  vertical-align: top;
  margin: 50px 0 0 0;
  padding: 90px 20px 20px 60px;
  background-color: rgba(255,255,255,0);
}

.login_column {
  display: inline-block;
  width: 96%;
  max-width: 420px;
  margin: 40px auto 0 auto;
  padding: 45px 0 0 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 20px rgba(0,0,0,0.3);
  -moz-box-shadow: 0 1px 20px rgba(0,0,0,0.3);
  box-shadow: 0 1px 20px rgba(0,0,0,0.3);
  background: rgba(255,255,255,1);
  overflow: hidden;
}

@media screen and (max-width:1200px) {
  .bg_index {
    height: 20px;
  }

  .header_column {
    width: 100%;
    vertical-align: top;
    margin: 0px 0 0 0;
    padding: 0px 10px 20px 10px;
  }

  .container {
    padding: 60px 0 80px 0;
  }

  .login_column {
    margin: 0 auto;
    padding: 25px 0 0 0;
  }
}

.title_column {
  display: block;
  width: 100%;
  max-width: 420px;
  text-align: center;
  /* border-bottom: 1px solid #ddd; */
  /* padding: 0 0 30px 0; */
  margin: 0 auto;
}

    .title_column .login_title {
        width: 100%;
        max-width: 280px;
    }

  .title_column .logo {
    display: inline-block;
    width: 80px;
    margin: 0 16px 0 0;
  }

    .title_column .logo img {
      max-width: 100%;
      vertical-align: top;
    }

  .title_column .text_column {
    display: inline-block;
    vertical-align: top;
    position: relative;
    top: 4px;
  }

    .title_column .text_column h1.title_ch {
      clear: both;
      margin: 0;
      font-size: 16pt;
    }

    .title_column .text_column h2.title_en {
      clear: both;
      margin: 0;
      font-size: 12pt;
    }

  .title_column.system {
    width: 100%;
    text-align: center;
    padding: 0 0 5px 0;
    margin: 0 0 10px 0;
    border-bottom: none;
  }

    .title_column.system .text_column {
      display: inline-block;
      vertical-align: top;
      position: relative;
      top: 16px;
    }

      .title_column.system .text_column h3.title_ch {
        clear: both;
        margin: 0 0 10px 0;
        font-size: 20pt;
      }

      .title_column.system .text_column h3.title_en {
        clear: both;
        margin: 0 0 10px 0;
        font-size: 10pt;
      }

.msg {
  font-size: 12pt;
  text-align: center;
  width: 100%;
  padding: 0 5px;
  word-break: break-all;
}

.info_row {
  text-align: center;
  width: 100%;
  margin: 0 0 10px 0;
}

.user_type_column {
  width: 100%;
  margin: 10px auto;
  text-align: center;
}

  .user_type_column .logo {
    display: inline-block;
    clear: both;
    width: 100px;
    height: 100px;
    margin: 0 10px 0 0;
    background: #ccc;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }

    .user_type_column .logo.type_A {
      background-image: url('../image/icon_menu_login.svg');
      background-color: var(--type_A);
      background-position: center;
      background-repeat: no-repeat;
      background-size: 62%;
    }

    .user_type_column .logo.type_B {
      background-image: url('../image/icon_menu_login.svg');
      background-color: var(--type_B);
      background-position: center;
      background-repeat: no-repeat;
      background-size: 62%;
    }

    .user_type_column .logo.type_C {
      background-image: url('../image/icon_menu_login.svg');
      background-color: var(--type_C);
      background-position: center;
      background-repeat: no-repeat;
      background-size: 62%;
    }

    .user_type_column .logo.type_pwd {
      background-image: url(../image/icon_menu_forgetpwd.svg);
    }

    .user_type_column .logo img {
      max-width: 100%;
      vertical-align: top;
      margin: 6px;
      width: 28px;
      height: 28px;
    }

  .user_type_column .text {
    display: inline-block;
    width: 100%;
    clear: both;
    vertical-align: top;
    position: relative;
    top: 5px;
    font-size: 22pt;
    font-weight: bold;
  }

    .user_type_column .text.type_A {
      color: var(--type_A);
    }

    .user_type_column .text.type_B {
      color: var(--type_B);
    }

    .user_type_column .text.type_C {
      color: var(--type_C);
    }
/********************************************************************/
/***copyright***/
.copyright {
  width: 96%;
  font-size: 10.5pt;
  margin: 120px auto 20px auto;
  line-height: 16pt;
}

.copyright_fli {
  color: #000;
}

.copyright .row {
}

  .copyright .row a {
    color: #000;
    border-bottom: 1px solid rgba(0,0,0,0.8);
  }

.copyright_fli .row a {
  color: #000;
  border-bottom: 1px solid rgba(0,0,0,0.8);
}
/********************************************************************/


/***form_column***/
.form_column {
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  padding: 30px 10px;
}

  .form_column.width_full {
    max-width: 100%;
  }

  .form_column .row {
    margin: 0 0 10px 0;
  }

    .form_column .row .info.relative {
      position: relative;
    }

      .form_column .row .info.relative .icon {
        position: absolute;
        width: 25px;
        height: 25px;
        top: 12.5px;
        left: 12.5px;
        opacity: 0.5;
        z-index:2;
      }
      .form_column .row .info.relative .icon_eye_closed {
        position: absolute;
        width: 28px;
        height: 28px;
        /*background-color: #666;*/
        border-radius: 50%;
        background-image: url("../image/icon_eye_closed.svg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: 24px;
        top: 12px;
        right: 10px;
        opacity: 1;
        z-index: 2;
        cursor: pointer;
        /*é¡¯ç¤ºéš±è—å¯†ç¢¼åŠŸèƒ½æš«æ™‚ä¸å•Ÿç”¨-20220511*/
        /*display: none;*/
      }
      .form_column .row .info.relative .icon_eye_open {
        /*background-color: #cc0000;*/
        background-image: url("../image/icon_eye_open.svg");
      }
    .form_column .row .info .radio_box {
      display: inline-block;
      margin: 0 15px 15px 0;
      font-weight: bold;
    }

    .form_column .row .info label {
      cursor: pointer;
    }

    .form_column .row .info img {
      max-width: 100%;
    }

    .form_column .row .info .authcode {
      vertical-align: middle;
      width: 50%;
      padding: 0 0 0 5px;
      float: right;
      text-align: center;
      position: relative;
      top: 2px;
      cursor: pointer;
      border-radius: 3px;
      overflow: hidden;
    }

      .form_column .row .info .authcode img {
        height: 45px;
        border-radius: 3px;
      }

    .form_column .row .info .change {
      display: inline-block;
      margin: 0 0 0 10px;
      cursor: pointer;
      border-bottom: 1px dashed #000;
      color: #000;
      font-size: 11pt;
    }

    .form_column .row .info a {
      text-decoration: underline;
    }

      .form_column .row .info a:hover {
        color: var(--hover_link);
      }

    .form_column .row .desc {
      font-size: 9pt;
      color: #666;
    }

    .form_column .row .note {
      color: #3C70FF;
      text-align: left;
      margin: 10px;
    }

    .form_column .row .info.register_Org {
      margin: 0 auto;
      padding: 8px 16px 4px 16px;
      width: fit-content;
      background: var(--type_A);
      -webkit-border-radius: 50px;
      -moz-border-radius: 50px;
      border-radius: 50px;
    }
    .form_column .row .info.register_CB {
      margin: 0 auto;
      padding: 8px 16px 4px 16px;
      width: fit-content;
      background: var(--type_B);
      -webkit-border-radius: 50px;
      -moz-border-radius: 50px;
      border-radius: 50px;
    }

    .form_column .row .info.register_Org:hover,
    .form_column .row .info.register_CB:hover {
      background: var(--hover_link);
    }

    .form_column .row .info.register_Org a,
    .form_column .row .info.register_CB a {
      color: #fff;
      text-decoration: unset;
      font-weight: bold;
      font-size: 14pt;
    }

    .form_column .row .info.register_Org img.icon_register,
    .form_column .row .info.register_CB img.icon_register {
      width: 32px;
      height: 32px;
      vertical-align: middle;
      margin: 0 6px 0 0;
    }

  .form_column .row_button {
    width: 100%;
    padding: 5px 0;
    margin: 10px 0;
    text-align: center;
  }

    .form_column .row_button .form_button {
      position: relative;
      top: 0;
      color: #fff;
      font-weight: bold;
      display: inline-block;
      padding: 10px;
      font-size: 14pt;
      transition: all 0.1s linear;
      -webkit-transition: all 0.1s linear;
      width: 100%;
      max-width: 330px;
      font-family: "Microsoft JhengHei", "Times New Roman", Times, serif;
      -webkit-appearance: none;
      background-color: #666;
      cursor: pointer;
    }

      .form_column .row_button .form_button:hover {
        top: 3px;
        filter:brightness(0.9);
        background: var(--hover_link) !important;
        box-shadow: inset 0px 15px 10px -15px rgba(0,0,0,0.33);
        -webkit-box-shadow: inset 0px 15px 10px -15px rgba(0,0,0,0.33);
        -moz-box-shadow: inset 0px 15px 10px -15px rgba(0,0,0,0.33);
      }

      .form_column .row_button .form_button.type_A {
        background: var(--type_A);
      }

      .form_column .row_button .form_button.type_B {
        background: var(--type_B);
      }

      .form_column .row_button .form_button.type_C {
        background: var(--type_C);
      }

.option_button {
  display: inline-block;
  margin: 10px 5px 0 5px;
  cursor: pointer;
}

  .option_button a {
    border-bottom: 1px solid rgba(0,0,0,0.66);
    color: rgba(0,0,0,0.66);
  }

  .option_button.type_A a:hover {
    border-bottom: 1px solid var(--hover_link);
    color: var(--hover_link);
  }

  .option_button.type_B a:hover {
    border-bottom: 1px solid var(--hover_link);
    color: var(--hover_link);
  }

  .option_button.type_C a:hover {
    border-bottom: 1px solid var(--hover_link);
    color: var(--hover_link);
  }

input[type="button"],
input[type="submit"],
input[type="reset"] {
  color: #fff;
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 5px;
  margin: 0 0 3px 0;
  background: #ddd;
  font-size: 11pt;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  width: 100%;
  max-width: 80px;
  border: none;
  font-family: "Microsoft JhengHei", "Times New Roman", Times, serif;
  -webkit-appearance: none;
  background-color: rgba(0,0,0, 0.4);
  cursor: pointer;
}

  input[type="button"].search_button {
    max-width: 50px;
  }

  input[type="button"]:hover,
  input[type="submit"]:hover,
  input[type="reset"]:hover,
  .form_button:hover {
    background-color: rgba(255,102,0, 1);
  }
/*inputç‰©ä»¶*/
.my-table td input[type="text"],
input[type="password"],
.my-table input.t_bb,
#search_k .t_b {
  padding: 4px 9px;
  margin: 0 0 5px 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-size: 11pt;
  border: #aaa 1px solid;
  margin: 0 0 5px 0;
  font-family: "Microsoft JhengHei", "Times New Roman", Times, serif;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.my-table input.t_bb {
  min-width: 120px;
  background-color: #AADFE4;
}

input.inputtext {
  width: 100%;
  font-size: 13pt;
  border: rgba(0,0,0,0.33) 2px solid;
  margin: 5px 0;
  padding: 10px;
  font-family: "Microsoft JhengHei", "Times New Roman", Times, serif;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

input.inputtext_id {
  width: 100%;
  font-size: 13pt;
  border: rgba(0,0,0,0.33) 1px solid;
  margin: 2px 0;
  padding: 10px 10px 10px 45px;
  font-family: "Microsoft JhengHei", "Times New Roman", Times, serif;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

input.inputtext_pwd {
  width: 100%;
  font-size: 13pt;
  border: rgba(0,0,0,0.33) 1px solid;
  margin: 2px 0;
  padding: 10px 45px 10px 45px;
  /*é¡¯ç¤ºéš±è—å¯†ç¢¼åŠŸèƒ½æš«æ™‚ä¸å•Ÿç”¨-20220511*/
  /*padding: 10px 10px 10px 45px;*/
  font-family: "Microsoft JhengHei", "Times New Roman", Times, serif;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

input.inputtext_auth {
  width: 100%;
  font-size: 13pt;
  border: rgba(0,0,0,0.33) 1px solid;
  margin: 2px 0;
  padding: 10px 10px 10px 45px;
  font-family: "Microsoft JhengHei", "Times New Roman", Times, serif;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

select {
  background: url(icon-arrow-dwn.png) center right no-repeat;
  padding: 4px 35px 4px 10px;
  background-color: #eee;
  border-radius: 5px;
  border: #999 1px solid;
  font-size: 13pt;
  line-height: 20px;
  margin: 0 0 3px 0;
  text-shadow: rgba(255,255,255,.6) 0 1px 0;
  font-family: "Microsoft JhengHei", "Times New Roman", Times, serif;
  -moz-appearance: none;
  -webkit-appearance: none;
}

  select::-ms-expand {
    display: none;
  }

input[type="radio"] {
  position: relative;
  top: 3px;
  background-color: #ddd;
  border-radius: 10px;
  border: #aaa 1px solid;
  height: 20px;
  width: 20px;
  margin: 0 3px 0 10px;
  -webkit-appearance: none;
  cursor: pointer;
}

  input[type="radio"]:checked {
    background: #000 url(../image/icon-radio-selected.png) no-repeat center center;
    border: #000 1px solid;
    -webkit-box-shadow: rgba(0,0,0,.1) 0 0 2px, rgba(0,0,0,.1) 0 0 8px;
  }

input[type="checkbox"] {
  background-color: #ddd;
  border-radius: 3px;
  border: #aaa 1px solid;
  height: 20px;
  width: 20px;
  margin: 0 3px 0 10px;
  -webkit-appearance: none;
  vertical-align: text-bottom;
  cursor: pointer;
}

  input[type="checkbox"]:checked {
    background: #000 url(../image/icon-check.png) no-repeat center center;
    border: #000 1px solid;
    -webkit-box-shadow: rgba(0,0,0,.1) 0 0 2px, rgba(0,0,0,.1) 0 0 8px;
  }
/********************************************************************/
.login_news_column {
  display: block;
  background-color: #FFFFE0;
  border: 2px solid #aaa;
  border-radius: 5px;
  padding: 10px 20px 10px 0;
  margin-top: 20px;
}
  .login_news_column h4 {
    font-size:1.2em;
    margin:0 auto
  }
  .login_news_column ul {
    text-align:left;
  }
    .login_news_column ul li {
      border-bottom:0px solid #ccc;
      padding-bottom:6px;
      margin-bottom:6px;
    }
      .login_news_column ul li a {
        color: #092748;
        border-bottom: 1px dashed #092748;
      }
      .login_news_column ul li a:hover {
        color: var(--hover_link);
      }
.msglabel_sys {
  display: inline-block;
  background-color: #e40000;
  color: #fff;
  border-radius:5px;
  padding: 0 5px;
  font-weight: bold;
  margin-right: 3px;
}
/********************************************************************/
/*è¼”åŠ©è¨­å®š*/
html {
  -ms-content-zooming: none; /* Disables zooming */
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100%;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 1em;
  min-height: 100%;
  font-family: "Microsoft JhengHei", "Times New Roman", Times, serif;
  cursor: default !important;
}

.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text_left {
  text-align: left;
}

a {
  position: relative;
}

  a:link,
  a:visited,
  a:hover {
    text-decoration: none;
  }

.over_length {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}

.justify {
  text-align: justify;
  text-justify: inter-ideograph;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #666;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #666;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #666;
}

:focus {
  outline: 0;
}

.width_50 {
  width: 50% !important;
}
._api_statusMsg {
  color: #c00;
  margin: 0 0 5px 0;
}
  ._api_statusMsg a {
    color: #c00;
    border-bottom: 1px solid #c00;
  }
._font_red {
  color: #c00;
}
._font_size_12em {
  font-size: 1.2em;
}
/********************************************************************/

/*******************************************/
footer {
  position:relative;
  clear: both;
  width: 100%;
  padding: 15px 0;
  margin: 30px auto 0 auto;
  overflow: hidden;
  font-size: 0.92em;
  z-index:2;
}

  footer .footer_column {
    max-width: 1200px;
    margin: 0 auto;
  }

  footer .copyrighter {
    width: 100%;
    margin: 15px auto 0 auto;
    padding: 8px 0;
    background: #333;
    color: #fff;
  }

    footer .copyrighter.type_A {
      background-color: var(--type_A);
    }

    footer .copyrighter.type_B {
      background-color: var(--type_B);
    }

    footer .copyrighter.type_C {
      background-color: var(--type_C);
    }

  footer .footer_column .link {
    width: 100%;
    margin: 10px auto;
  }

    footer .footer_column .link ul {
      text-align: center;
      width: 100%;
      margin: 0;
      padding: 0;
    }

      footer .footer_column .link ul li {
        display: inline-block;
        margin: 0 10px;
      }

        footer .footer_column .link ul li a {
          font-size: 1em;
          color: #000;
          border-bottom: 1px dashed #000;
        }

          footer .footer_column .link ul li a:hover {
            border-bottom: 1px dashed #000;
          }

  footer .footer_column .info,
  footer .copyrighter .info {
    width: 100%;
    text-align: center;
    font-size: 1em;
    padding: 0 10px;
  }

    footer .footer_column .info .row,
    footer .copyrighter .info .row {
      display: inline-block;
      margin: 2px 6px;
    }

    footer .copyrighter .info a {
      color: #fff;
    }

.table_contactinformation {
  margin: 10px auto;
}
  .table_contactinformation tr td {
    padding: 3px 10px;
  }
  .table_contactinformation tr td hr{
    border-bottom:none;
  }
/*******************************************/
.popupwindow {
  display: none !important;
}
/*******************************************/
.remsg {
  color: #c00;
  text-align: left;
  width: 100%;
  display: block;
}
._displaynone {
  display:none;
}
._center {
  text-align:center;
}
/*******************************************/