@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");
* {
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 微軟正黑體;
}

#header {
    padding: 0.75rem 4.64vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fafafa;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    
  }
  #header a
  {
    color: #000000;
  }
  @media only screen and (max-width: 590px) {
    #header {
      padding: 10px 20px;
    }
  }
  #header .mybtn {
    line-height: 225%;
    min-width: unset;
  }
  #header .mybtn.mybtn-highlight {
    margin-left: 1.5rem;
  }
  @media only screen and (max-width: 968px) {
    #header .mybtn.mybtn-highlight {
      margin-left: 0;
      margin-top: 2rem;
      padding-top: 0.25rem;
      padding-bottom: 0.25rem;
      width: 100%;
      display: inline-block;
    }
  }
  #header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;

    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  #header .logo a {
    color: #fff;
  }
  
  #header .logo img {
    max-height: 40px;
  }
  a {
    color: #3498db;
    font-size: 1rem;
    line-height: 1.425rem;
    
  }
  
  .logo {
    width: calc(40px + 50 * (100vw - 320px) / 1600);
  }
  
  .nav {
    display: flex;
  }
  .nav > ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
.mybtn {
    font-size: 1rem;
    font-weight: bold;
    height: fit-content;
    line-height: 1.425rem;
    border-radius: 16px;
    text-align: center;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
  }
  .mybtn:active {
    transform: scale(1.15);
  }
  .mybtn:focus {
    outline: none;
  }
  
  .mybtn:disabled {
    opacity: 0.3;
    cursor: initial;
  }
  
  .mybtn-fr {
    color: #ffffff;
    background-color: #178bd4;
    border: 0px solid transparent;
    box-shadow: 0px 6px 10px rgba(51, 152, 219, 0.35);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .mybtn-fr:not([disabled]):hover {
    color: #ffffff;
    background-color: #076ca6;
    border: 0px solid transparent;
  }
  .mybtn-fr:not([disabled]):hover {
    box-shadow: 0px 3px 5px rgba(51, 152, 219, 0.65);
  }
  
  .mybtn-bk {
    color: #ffffff;
    background-color: #09d18b;
    border: 0px solid transparent;
    box-shadow: 0px 6px 10px rgba(111, 167, 7, 0.35);
  }
  .mybtn-bk:not([disabled]):hover {
    color: #ffffff;
    background-color: #006b7b;
    border: 0px solid transparent;
  }
  .mybtn-bk:not([disabled]):hover {
    box-shadow: 0px 2px 5px rgba(111, 167, 7, 0.65);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  .mybtn-fr.mybtn-highlight {
    color: #178bd4;
    background-color: #ffffff;
    border: 0px solid transparent;
  }
  .mybtn-fr.mybtn-highlight:not([disabled]):hover {
    color: #076ca6;
    background-color: #ffffff;
    border: 0px solid transparent;
  }
  
  .mybtn-bk.mybtn-highlight {
    color: #09d18b;
    background-color: #ffffff;
    border: 0px solid transparent;
  }
  .mybtn-bk.mybtn-highlight:not([disabled]):hover {
    color: #006b7b;
    background-color: #ffffff;
    border: 0px solid transparent;
  }
  
  .mybtn-outlined {
    font-weight: 500;
    color: #000000;
    background-color: transparent;
    border: 1px solid #000000;
  }
  .mybtn-outlined:not([disabled]):hover {
    color: #000000;
    background-color: #e0e0e0;
    border: 1px solid #000000;
  }
  
  .mybtn-outlined.mybtn-highlight {
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #ffffff;
  }
  .mybtn-outlined.mybtn-highlight:not([disabled]):hover {
    color: #ffffff;
    background-color: #076ca6;
    border: 1px solid #ffffff;
  }
  
  .mybtn-err {
    color: #ffffff;
    background-color: #C42319;
    border: 0px solid transparent;
  }
  .mybtn-err:not([disabled]):hover {
    color: #ffffff;
    background-color: #AA0707;
    border: 0px solid transparent;
  }
  
  .mybtn-outlined.mybtn-err {
    color: #C42319;
    background-color: transparent;
    border: 1px solid #C42319;
  }
  .mybtn-outlined.mybtn-err:not([disabled]):hover {
    color: #AA0707;
    background-color: #e0e0e0;
    border: 1px solid #AA0707;
  }
  
  .mybtn-cta {
    text-decoration: none;
    font-size: 42px;
    color: #ffffff;
    background: linear-gradient(90deg, #178bd4 0%, #00b4b7 50%, #178bd4 100%);
    background-size: 200% 200%;
    width: 100%;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    transition: background-position 2s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 8px;
  }
  .mybtn-cta:hover {
    background-position: 100% 100%;
  }
  .mybtn-cta p {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .mybtn-cta img {
    padding-left: 1rem;
    width: 4rem;
    max-width: 72px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .mybtn-cta:active {
    transform: none;
  }
  .mybtn-cta:hover {
    color: #ffffff;
  }
  .mybtn-cta:hover img {
    transform: translateX(20px);
  }
  .mybtn-cta:visited:hover {
    color: #ffffff;
  }
  
  .mybtn-txt, .mybtn-back, .sv-drft, .mybtn-secondary {
    color: #000000;
    background-color: transparent;
    border: 0px solid transparent;
    border-radius: 0.5rem;
    transition: none;
    min-width: unset;
    padding: 0.5rem 0.75rem;
    display: inline-flex;
    align-items: center;
  }
  .mybtn-txt:not([disabled]):hover, .mybtn-back:not([disabled]):hover, .sv-drft:not([disabled]):hover, .mybtn-secondary:not([disabled]):hover {
    color: #000000;
    background-color: #e0e0e0;
    border: 0px solid transparent;
  }
  .mybtn-txt > img, .mybtn-back > img, .sv-drft > img, .mybtn-secondary > img {
    padding-right: 0.5rem;
  }
  .mybtn-txt:active, .mybtn-back:active, .sv-drft:active, .mybtn-secondary:active {
    transform: none;
  }
  .mybtn-txt:focus, .mybtn-back:focus, .sv-drft:focus, .mybtn-secondary:focus {
    background-color: #e0e0e0;
  }
  
  .mybtn-txt.active, .active.mybtn-back, .active.sv-drft, .active.mybtn-secondary {
    background-color: #e0e0e0;
    font-weight: bold;
  }
  
  .mybtn-secondary {
    padding: 0.25rem 0.75rem;
    text-decoration: none;
    color: #000000;
    background-color: transparent;
    border: 1px solid #000000;
    font-size: 0.75rem;
    border-radius: 1.75rem;
  }
  .mybtn-secondary:not([disabled]):hover {
    color: #000000;
    background-color: #e0e0e0;
    border: 1px solid #000000;
  }
  .mybtn-secondary .icon {
    width: 1.75rem;
  }
  @media only screen and (max-width: 968px) {
    .nav > ul {
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      margin: 0;
      padding: 32px;
      height: 100vh;
      width: 100vw;
      background-color: #ffffff;
      transform: translateX(100%);
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      overflow-y: scroll;
    }
    .nav > ul > li {
      padding: 20px 12px;
    }
  }
  .nav li {
    list-style: none;
    padding: 10px 21px;
  }
  .nav li:hover {
    cursor: pointer;
  }
  .nav a {
    text-decoration: none;
  }
  
  .nav .mybtn.mybtn-fr {
    padding: 0 21px;
  }
  
  .nav li[id] a, .nav li[id] span {
    position: relative;
    font-weight: 500;
  }
  .nav li[id] a::after, .nav li[id] span::after {
    width: 10px;
    height: 10px;
    content: "";
    background-color: #178bd4;
    position: absolute;
    bottom: -17.5px;
    left: 50%;
    transform: translate(-50%, 100%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav li[id] a:hover::after, .nav li[id] span:hover::after {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  .nav li[id].active > a, .nav li[id].active > span {
    color: #000000;
  }
  .nav li[id].active > a::after, .nav li[id].active > span::after {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  
  .sub-menu {
    cursor: pointer;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
  }
  .sub-menu a::after {
    display: none;
  }
  
  .sub-menu-drop {
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    z-index: 99;
    position: absolute;
    top: 8px;
    left: 16px;
    transition: top 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.1s easeInOut;
    padding-left: 0;
    border-radius: 8px;
    background-color: #ffffff;
    min-width: 140px;
    text-align: center;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .sub-menu-drop li {
    cursor: pointer;
    padding: 1rem;
  }
  .sub-menu-drop li:hover {
    background-color: #e2e2e2;
  }
  .sub-menu-drop button {
    background: none;
    border: none;
  }
  .sub-menu-drop button:focus {
    outline: none;
  }
  
  .sub-menu-drop.open {
    pointer-events: auto;
    top: 2rem;
    opacity: 1;
  }
  
  .nav > ul.open {
    background: linear-gradient(82.59deg, #178bd4 1.09%, #00b4b7 162.85%);
  }
  .nav > ul.open li[id] > a {
    color: #ffffff;
  }
  .nav > ul.open li[id] > a::after {
    background-color: #ffffff;
    right: -1.5rem;
    top: 50%;
    bottom: unset;
    left: unset;
  }
  @media only screen and (max-width: 1368px) {
    .nav > ul.open {
      transform: translateX(0);
    }
    .nav > ul.open > li:first-child() {
      text-align: right;
      padding: 8px 8px 0 0;
      margin-bottom: 4vh;
    }
  }
  .nav > ul.open li[id].active > a {
    color: #ffffff;
  }
  .nav > ul.open li[id].active > a::after {
    transform: translate(0, -50%);
  }
  
  .hmbg, .cancel {
    display: none;
  }
  @media only screen and (max-width: 968px) {
    .hmbg, .cancel {
      display: inline;
    }
  }
  
  .mb-login {
    display: none;
  }
  @media only screen and (max-width: 968px) {
    .mb-login {
      display: inline-block;
      margin-right: 21px;
    }
  }
  
.dsk-login {
    padding-left: 21px;
  }
  @media only screen and (max-width: 968px) {
    .dsk-login {
      display: none;
    }
  }
  
  .page-nav {
    text-align: center;
    padding-bottom: 3rem;
  }
  .page-nav button {
    margin: 0.5rem;
    border: none;
    padding: 12px 20px;
    background-color: #434343;
    transition: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    color: #ffffff;
  }
  .page-nav button:hover {
    background-color: #C8C8C8;
  }

  #mainBefLog {
    padding-top: 150px;
  }
  @media only screen and (max-width: 768px) {
    #mainBefLog {
      padding-left: 15px;
      padding-right: 15px;
    }
  }

  #database, #data {
    display: block;
  }
  #database > span, #data > span {
    color: #000000;
    font-weight: 500;
  }
  @media only screen and (max-width: 968px) {
    #database > span, #data > span {
      color: #ffffff;
    }
  }
  @media only screen and (max-width: 968px) {
    #database, #data {
      display: none;
    }
  }
  #database .sub-menu-drop, #data .sub-menu-drop {
    width: 140%;
    top: 2.125rem;
  }
  .my-side {
    display: none;
    color: #ffffff;
    font-weight: 500;
    padding: 20px 12px;
  }
  @media only screen and (max-width: 968px) {
    .my-side {
      display: block;
    }
  }

  .my-side li {
    padding: 0;
  }
  .my-side .icon {
    width: 24px;
    margin: 0 0 0.25rem 0.25rem;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  .my-side:not(.collapsed) .icon {
    transform: rotate(180deg);
  }
  
  .my-sideSub li {
    margin: 1.5rem 0;
  }
  .my-sideSub a:first-of-type > li {
    margin: 0;
  }
  .my-sideSub span {
    padding-left: 1.5rem;
    color: #ffffff;
    font-size: 1rem;
  }
.t-title-sec {
    font-size: 1.5rem;
    line-height: 150%;
  }
  .t-txt {
    font-size: 1rem;
    line-height: 175%;
  }
  .t-w-bold, .t-title, .t-title-first, .t-title-sec, .t-title-third {
    font-weight: bold;
  }
  .t-txt-sec {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
  .icon {
    width: 24px;
  }
  .go-top {
    position: fixed;
    right: 3.125vw;
    z-index: 99;
    bottom: 4.625vh;
    border-radius: 50%;
    background: linear-gradient(0deg, #178bd4 0%, #09d18b 50%, #178bd4 100%);
    background-size: 200% 200%;
    width: 58px;
    height: 58px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transform: scale(0);
    pointer-events: none;
  }
    #contentBefLog {
      padding: 0;
    }
  #mainBefLog {
    padding-top: 150px;
  }
    #mainBefLog {
      padding-left: 15px;
      padding-right: 15px;
    }
body {
        font-family: "Lato", "Noto Sans TC", sans-serif;
        background-color: #efefef;
        overflow-x: hidden;
      }/*# sourceMappingURL=mystyle.css.map */

      
a.mybtn {
  text-decoration: none;
}

a.div-link {
  text-decoration: none;
}

a.bk-news {
  border: 1px solid #000000;
  background-color: #ffffff;
  padding: 30px 45px;
  text-decoration: none;
}
.footer {
    padding: 78px 0;
    border-top: 1px solid #000;
  }
  .footer .icon {
    margin: 1rem 0.75rem;
  }
  @media only screen and (max-width: 768px) {
    .footer .icon {
      margin: 0.25rem;
    }
  }
  .footer .nchc {
    padding-top: 60px;
  }
  @media only screen and (max-width: 768px) {
    .footer .nchc {
      padding-bottom: 60px;
    }
  }
  
  @media only screen and (max-width: 768px) {
    .footer li.d-flex {
      flex-direction: column;
      margin: 0 0 2rem 0 !important;
      align-items: baseline !important;
    }
  }
@media only screen and (max-width: 768px) {
    .copyright {
      margin-top: 60px;
    }
  }