@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC&display=swap");
* {
    font-family: 微軟正黑體;
    letter-spacing: 1.5px;
}

a {
    text-decoration: none;
    color: black;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-down {
    0% {
        opacity: 0;
        transform: translate(0, -5%);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes slide-fade1 {
    0% {
        transform: translate(-10%, 0);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes shakeleft {
    0% {
        opacity: 0.5;
        margin-left: -3%;
    }
    50% {
        margin-left: -5%;
        opacity: 1;
    }
    100% {
        opacity: 0.5;
        margin-left: -3%;
    }
}

@keyframes shakeright {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10%, 0);
    }
    100% {
        transform: translate(0, 0);
    }
}

.fade-enter,
.fade-leave-to {
    opacity: 0;
}

.fade-enter-active,
.fade-leave-active {
    transition: all 0.5s ease;
}

.whiteFade-enter,
.whiteFade-leave-to {
    opacity: 0;
}

.whiteFade-enter-active {
    transition: all 1s ease;
}

.rightIn-enter {
    transform: translateX(10%);
    opacity: 0;
}

.rightIn-leave-to {
    opacity: 0;
}

.rightIn-enter-active {
    transition: all 0.8s ease;
}

.noEnterFade-enter,
.noEnterFade-leave-to {
    opacity: 0;
}

.noEnterFade-leave-active {
    transition: all 0.5s ease;
}

.noLeaveFade-enter,
.noLeaveFade-leave-to {
    opacity: 0;
}

.noLeaveFade-enter-active {
    transition: all 0.5s ease;
}

.loadingfade-leave-to {
    opacity: 0;
}

.loadingfade-leave-active {
    transition: all 0.5s ease;
}

.loading {
    visibility: hidden;
    max-height: 0;
}

body,
html {
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#app {
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    position: relative;
}

#app .Head {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 99;
    background-color: #fff;
    transition: 0.3s;
    opacity: 1;
}

#app .Head .HeadTop {
    width: 97.5%;
    display: flex;
    flex-direction: row;
    min-height: 50px;
    border-bottom: solid 2px Black;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}

#app .Head .HeadTop .logo {
    width: 100px;
    height: 70px;
    background-size: 85% auto !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

@media all and (min-width: 2100px) {
    #app .Head .HeadTop .logo {
        width: 150px;
        height: 100px;
    }
}

#app .Head .HeadTop .project_name {
    position: relative;
    text-align: center;
    font-size: 23px;
    color: #000;
    letter-spacing: 1.5px;
}

@media all and (max-width: 610px) {
    #app .Head .HeadTop .project_name {
        font-size: 18px;
    }
}

#app .Head .HeadTop .HeadLinkBlock {
    min-width: 4vw;
    min-height: 100%;
    display: flex;
    flex-direction: row;
    position: absolute;
    right: 0;
    justify-content: center;
    align-items: center;
}

#app .Head .HeadTop .HeadLinkBlock .HeadLink1 {
    width: 2vw;
    height: 2vw;
    min-width: 25px;
    min-height: 25px;
    background: url("./assets/link1.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 0.5vw;
    justify-self: flex-end;
}

@media all and (max-width: 900px) {
    #app .Head .HeadTop .HeadLinkBlock .HeadLink1 {
        min-width: 40px;
        min-height: 40px;
    }
}

@media all and (max-width: 610px) {
    #app .Head .HeadTop .HeadLinkBlock .HeadLink1 {
        min-width: 30px;
        min-height: 30px;
    }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    #app .Head .HeadTop .HeadLinkBlock .HeadLink1 {
        margin-top: -20px;
    }
}

#app .Head .HeadTop .HeadLinkBlock .HeadLink2 {
    width: 2vw;
    height: 2vw;
    min-width: 25px;
    min-height: 25px;
    background: url("./assets/link2.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

@media all and (max-width: 900px) {
    #app .Head .HeadTop .HeadLinkBlock .HeadLink2 {
        min-width: 40px;
        min-height: 40px;
    }
}

@media all and (max-width: 610px) {
    #app .Head .HeadTop .HeadLinkBlock .HeadLink2 {
        min-width: 30px;
        min-height: 30px;
    }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    #app .Head .HeadTop .HeadLinkBlock .HeadLink2 {
        margin-top: -20px;
    }
}

#app .Head .HeadBottom {
    width: 97.5%;
    box-sizing: border-box;
    position: relative;
    min-height: 50px;
    border-bottom: solid 7px Black;
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media all and (max-width: 900px) {
    #app .Head .HeadBottom {
        padding: 0 0 0 2vw;
    }
}

@media all and (max-width: 610px) {
    #app .Head .HeadBottom {
        padding: 0 0 0 2vw;
    }
}

@media all and (max-width: 900px) {
    #app .Head .HeadBottom .menu {
        display: none;
    }
}

@media all and (max-width: 610px) {
    #app .Head .HeadBottom .menu {
        display: none;
    }
}

#app .Head .HeadBottom .smallmenuicon {
    display: none;
    cursor: pointer;
}

@media all and (max-width: 900px) {
    #app .Head .HeadBottom .smallmenuicon {
        display: flex;
    }
}

@media all and (max-width: 610px) {
    #app .Head .HeadBottom .smallmenuicon {
        display: flex;
    }
}

#app .Head .HeadBottom .search {
    height: 100%;
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    right: 8px;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    #app .Head .HeadBottom .search {
        top: 2px;
    }
}

@media all and (max-width: 900px) {
    #app .Head .HeadBottom .search {
        top: -2px;
    }
}

#app .Head .HeadBottom .search .searchInput {
    border-radius: 20px;
    width: 90%;
    height: 30%;
    border-color: #707070;
    outline: none;
    font-size: 0.8vw;
}

#app .Head .HeadBottom .search .searchIcon {
    width: 15px;
    height: 15px;
    display: inline-block;
    border: solid 3.5px #373737;
    border-radius: 100%;
    cursor: pointer;
}

#app .Head .HeadBottom .search .searchIcon:after {
    content: ' ';
    width: 6px;
    display: block;
    border: solid 2px #373737;
    transform: translateX(13px) translateY(15px) rotate(38deg);
}

#app .HeadSpace {
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

#app .breadcrumpBlock {
    position: relative;
    width: 97.5%;
    min-height: 20px;
    margin: 0 0 20px 1.25%;
    box-sizing: border-box;
    padding: 5px 0;
    display: flex;
    flex-direction: row;
}

@media all and (max-width: 900px) {
    #app .breadcrumpBlock {
        margin: 0 0 10px 1.25%;
    }
}

@media all and (max-width: 610px) {
    #app .breadcrumpBlock {
        margin: 0 0 5px 1.25%;
    }
}

#app .breadcrumpBlock .breadcrump {
    position: relative;
    text-align: center;
    color: #707070;
    font-size: 15px;
    box-sizing: border-box;
    letter-spacing: 2px;
    margin-right: 12px;
    display: flex;
    flex-direction: row;
}

#app .breadcrumpBlock .breadcrump:after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-top: 1px solid #707070;
    border-left: 1px solid #707070;
    transform: rotate(135deg);
    margin: 8px 0 0 5px;
}

#app .breadcrumpBlock .breadcrump:last-child:after {
    display: none;
}

#app .Arti {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0;
    box-sizing: border-box;
}

#app .Foot {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.border_bottom_gray {
    border-bottom: solid 1px rgba(153, 153, 153, 0.5) !important;
}

.Head_scroll {
    width: 100%;
    min-height: 50px;
    background-color: #000;
    position: fixed;
    top: 0;
    z-index: 10;
    color: white;
    font-size: 23px;
    text-align: center;
    padding: 8px 5px 8px 5px;
    box-sizing: border-box;
}

@media all and (max-width: 900px) {
    .Head_scroll {
        display: none;
    }
}

.height_off {
    position: fixed !important;
    top: 0 !important;
    transform: translateY(-100%) !important;
    z-index: 11;
}

@media all and (max-width: 900px) {
    .height_off {
        transform: translateY(0%) !important;
    }
}

.height_off.mouse_in {
    transform: translateY(0%) !important;
}

.logo {
  position: relative;
  height: auto;
  padding: 10px 0 20px;
  z-index: 1;
  transition: 0.3s all cubic-bezier(0.16, 0.45, 0.36, 0.93); }
  @media all and (max-width: 1050px) {
    .logo {
      display: none; } }
  .logo.scrollHide {
    height: 0;
    padding: 0; }
    .logo.scrollHide .logo_img {
      width: 0; }
  .logo .logo_img {
    width: 135px;
    transition: 0.3s all cubic-bezier(0.16, 0.45, 0.36, 0.93); }
    @media all and (max-width: 1050px) {
      .logo .logo_img {
        width: 52px; } }