@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap');


/* 共用變數 */
:root {
    --green-color: #00858a;
    --green-light-color: #d9eded;
    --green-lightgray-color: #f3fafa;
    --blue-color: #006da6;
    --blue-color-50: rgba(0, 109, 166, 0.5);
    --blue-light-color: #e8f1f7;
    --blue-lightgray-color: #f3f4f6;
    --black-color: #000;
    --black-color-50: rgba(0, 0, 0, 0.5);
    --white-color: #fff;
    --white-color-75: rgba(255, 255, 255, 0.75);
    --gray-color-90: #333;
    --gray-color-80: #444;
    --gray-color-70: #666;
    --gray-color-60: #8d8d8d;
    --gray-color-50: #999;
    --gray-color-40: #ccc;
    --gray-color-30: #ddd;
    --gray-color-20: #eaeaea;
    --gray-color-10: #f5f5f5;
    --yellow-color: #ffe670;
    --yellow-color-light: #fff7bb;
    --red-color: #ff0000;
    --red-color-dark: #a52a2a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans TC", sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 165%;
    color: var(--gray-color-90);
}

:root {
    scroll-padding-top: 80px;
}

.file-icon::before {
    content: '\F38B';
}

.pdf-icon::before {
    content: '\F63E';
}

.xlsx-icon::before {
    content: '\F368';
}

.doc-icon::before {
    content: '\F38D';
}

.img-icon::before {
    content: '\F42A';
}

img {
    max-width: 100%;
    height: auto;
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

@media (max-width:1280px) {
    header {
        padding: 1rem 1.25rem;
    }
}

@media (max-width:575px) {
    header {
        padding: 0.5rem 0.75rem;
    }
}

header.sticky {
    position: fixed;
    top: 0px;
    width: 100vw;
    z-index: 999;
    background-color: var(--white-color-75);
    padding: 0.5rem 1.25rem;
    backdrop-filter: blur(3px);
}

@media (max-width:575px) {
    header.sticky {
        padding: 0.5rem 0.75rem;
    }
}

.oc-edit-buttons-visible header.sticky {
    top: 50px;
}

header .logo h1 {
    margin-bottom: 0;
    line-height: 1;
}

header .logo h1 a img {
    vertical-align: baseline;
}

@media (max-width:1401px) {
    header .logo {
        width: 39%
    }
}

@media (max-width:1280px) {
    header .logo {
        width: 35%
    }
}

@media (max-width:991px) {
    header .logo {
        width: 300px
    }
}

@media (max-width:575px) {
    header .logo {
        margin-right: 1rem;
    }
}

header nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

@media (max-width:991px) {
    header>nav {
        display: none;
    }

    header.active>nav {
        display: flex;
        position: fixed;
        width: 100%;
        height: 100vh;
        background-color: var(--black-color-50);
        top: 0px;
        left: 0px;
        align-items: flex-start;
        justify-content: center;
        z-index: 2;
        padding-top: 100px;
    }
}

@media (max-width:991px) {
    header.active nav>ul {
        flex-direction: column;
        background-color: var(--blue-color);
        width: 50%;
        padding: 2rem !important;
        justify-content: center;
        border-radius: 30px;
    }
}

@media (max-width:767px) {
    header.active nav>ul {
        width: 80%;
        padding: 1.5rem !important;
    }
}

header nav li a {
    text-decoration: none;
    color: var(--gray-color-90);
    display: block;
    border-radius: 30px;
    font-size: 1.25rem;
    padding: 0 20px;
    line-height: 50px
}

@media (max-width:1380px) {
    header nav li a {
        padding: 0 14px;
        font-size: 1.125rem;
    }
}

@media (max-width:1140px) {
    header nav li a {
        padding: 0 10px;
    }
}

@media (max-width:991px) {
    header.active nav>ul>li>a {
        color: var(--white-color);
    }
}

header nav li a:hover {
    color: var(--blue-color);
}

header.active ul>li.dropdown {}

header nav li .arrow {
    background-color: var(--white-color);
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    top: 10px;
    transition: all 0.3s;
}

header nav li .arrow.active {
    transform: rotate(90deg);
}

header nav li .arrow::before {
    content: '\F285';
    font-family: bootstrap-icons;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--blue-color);
    line-height: 1;
}

.login {
    margin-left: 1rem
}

@media (max-width:575px) {
    .login {
        margin-left: 0.5rem
    }
}

.login a {
    background-color: var(--blue-color);
    color: var(--white-color);
    border-radius: 30px;
    line-height: 46px;
    display: flex;
    text-decoration: none;
    transition: all 0.3s;
    width: 46px;
    justify-content: center;
    font-size: 1.5rem;
}

@media (max-width:575px) {
    .login a {
        width: 36px;
        height: 36px;
        line-height: 36px;
    }
}

.login.dropdown a {
    width: initial;
    font-size: 1.25rem;
    padding: 0 0.8125rem;
}

@media (max-width:991px) {
    .login.dropdown a {
        font-size: 1rem;
    }
}

@media (max-width:480px) {
    .login.dropdown a {
        font-size: 1.25rem;
        padding: 0;
        width: 36px;
    }
}

@media (max-width:480px) {
    .login.dropdown a span {
        display: none;
    }
}

.login a:hover {
    background-color: var(--green-color);
}

.login.dropdown .dropdown-menu {
    right: 0px;
    width: 210px;
}

@media (max-width:991px) {
    .login.dropdown .dropdown-menu {
        position: absolute;
        width: 210px;
    }
}

.login.dropdown .dropdown-menu a {
    background-color: initial;
    color: var(--gray-color-90);
    display: block;
    font-size: 1.125rem;
    padding: 0 20px;
    line-height: 40px;
    border-radius: 0px;
    width: 100%;
}

.login.dropdown .dropdown-menu a:hover {
    color: var(--blue-color);
}

@media (min-width:992px) {
    .login:hover .dropdown-menu {
        padding: 0.5rem 0.75rem;
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        transition: all ease 0.5s;
    }
}


.mobiBtn {
    display: none;
}

.mobiBtn a {
    color: var(--white-color);
    font-size: 1.5rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--green-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

@media (max-width:991px) {
    .mobiBtn {
        display: block;
        margin-left: auto;
        position: relative;
        z-index: 2;
    }
}

@media (max-width:575px) {
    .mobiBtn a {
        width: 36px;
        height: 36px;
        line-height: 1
    }
}

.kt {
    max-width: 1448px;
    margin: 5rem auto 3rem auto;
    display: flex;
    align-items: flex-end;
    padding: 0 1.5rem;
}

@media (max-width:991px) {
    .kt {
        flex-wrap: wrap;
        align-items: center;
        max-width: 670px;
    }
}

.kt .heading {
    margin-bottom: -1.5rem;
    margin-right: 2rem;
}

@media (max-width:991px) {
    .kt .heading {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 2rem;
        margin-right: 0;
        justify-content: center;
    }
}

.kt .heading::before {
    content: '❛❛';
    font-size: 4rem;
    color: var(--green-color);
    position: relative;
    top: 55px;
}

@media (max-width:991px) {
    .kt .heading::before {
        top: -10px;
    }
}

.kt .heading::after {
    content: '❜❜';
    font-size: 4rem;
    color: var(--blue-color);
    text-align: right;
    position: relative;
    top: -46px;
    right: 23px;
    display: block;
}

@media (max-width:991px) {
    .kt .heading::after {
        top: 38px;
        right: 0px;
    }
}

.kt h2 {
    font-family: "Noto Serif TC", sans-serif;
    margin-bottom: 0.25rem;
    font-size: 3rem;
    font-weight: 800;
    padding: 0 4rem;
}

@media (max-width:1230px) {
    .kt h2 {
        font-size: 2.5rem;
    }
}

@media (max-width:991px) {
    .kt h2 {
        padding: 0 1rem;
    }
}

@media (max-width:480px) {
    .kt h2 {
        font-size: 2rem;
    }
}


.kt p {
    margin-bottom: 0.25rem;
    color: var(--gray-color-70);
}

@media (max-width:1230px) {
    .kt p {
        font-size: 1rem;
    }
}

@media (max-width:991px) {
    .kt p {
        margin-bottom: 0;
    }
}


.describe {
    margin-left: auto;
    margin-right: 2rem;
    width: 31%;
}

@media (max-width:991px) {
    .describe {
        width: calc(100% - 180px - 3rem);
        margin: 0 1.5rem;
    }
}

@media (max-width:480px) {
    .describe {
        width: 100%;
        margin: 0 0 1.5rem 0;
    }
}

@media (max-width:480px) {
    .applyBtn {
        margin: auto
    }
}

.applyBtn a {
    display: flex;
    position: relative;
    width: 200px;
    border-radius: 50px;
    background-color: var(--blue-light-color);
    transition: all 0.7s;
}

.applyBtn.active a {
    background-color: var(--green-color);
}

@media (max-width:1230px) {
    .applyBtn a {
        width: 180px;
    }
}

.applyBtn a span {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
    color: var(--blue-color);
    transition: all 0.7s;
}

.applyBtn.active a span {
    color: var(--blue-light-color);
    ;
}

@media (max-width:1230px) {
    .applyBtn a span {
        width: 90px;
        height: 90px;
    }
}

.applyBtn a .switch-dot {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--blue-color);
    color: var(--white-color);
    padding: 0 29px;
    line-height: 24px;
    font-size: 20px;
    letter-spacing: 1px;
    transition: all 0.7s ease;
}

.applyBtn.active a .switch-dot {
    background-color: var(--blue-light-color);
    color: var(--blue-color);
}

@media (max-width:1230px) {
    .applyBtn a .switch-dot {
        width: 90px;
        height: 90px;
        padding: 0px 24px;
    }
}

.applyBtn a:hover .switch-dot {
    transform: translateX(100px)
}

@media (max-width:1230px) {
    .applyBtn a:hover .switch-dot {
        transform: translateX(90px)
    }
}

.banner {
    overflow: hidden;
    margin: 3rem 0;
    position: relative;
}

.banner::before {
    content: '';
    display: block;
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 60%);
    position: absolute;
    top: 0px;
    width: calc(50% - 760px);
    height: 100%;
    z-index: 2;
}

.banner::after {
    content: '';
    display: block;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 60%);
    position: absolute;
    top: 0px;
    right: 0px;
    width: calc(50% - 760px);
    height: 100%;
    z-index: 2;
}

.banner .owl-carousel {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 1.5rem;
}

.banner .owl-carousel .owl-stage-outer {
    overflow: initial;
}

.banner .item, .banner .item a {
    aspect-ratio: 5 / 2.75;
    overflow: hidden;
    border-radius: 30px;
}

.banner .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .owl-item {
    transform: scale(0.95);
    transition: all 0.3s;
}

.banner .owl-item.active {
    transform: scale(1);
}

.banner .owl-nav {
    position: absolute;
    top: calc(50% - 40px);
    width: 100%;
    z-index: 9;
}

@media (max-width:991px) {
    .banner .owl-nav {
        top: calc(50% - 30px);
    }
}

.banner .owl-nav button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--blue-color);
    color: var(--white-color);
    border: none;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
}

@media (max-width:991px) {
    .banner .owl-nav button {
        width: 60px;
        height: 60px;
    }
}

@media (max-width:767px) {
    .banner .owl-nav button {
        width: 50px;
        height: 50px;
    }
}

.banner .owl-nav button::before {
    font-family: bootstrap-icons;
    font-size: 2.5rem;
}

@media (max-width:575px) {
    .banner .owl-nav button::before {
        font-size: 1.75rem;
    }
}

.banner .owl-prev {
    left: -60px;
}

@media (max-width:1440px) {
    .banner .owl-prev {
        left: -15px;
    }
}

.banner .owl-prev::before {
    content: '\F12C';
}

.banner .owl-next {
    right: -10px;
}

@media (max-width:1440px) {
    .banner .owl-next {
        right: 30px;
    }
}

.banner .owl-next::before {
    content: '\F135';
}

.message {
    background-color: var(--blue-light-color);
    ;
    display: flex;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    margin: 1rem 0;
}

.marquee-title {
    flex-shrink: 0;
    border-right: var(--gray-color-90) 1px solid;
    padding-right: 1rem;
    line-height: 26px;
}

.marqueeBlk a {
    text-decoration: none;
    color: var(--gray-color-90);
    line-height: 1;
}

.marqueeBlk a:hover {
    color: var(--blue-color);
}

.marqueeBlk .more a {
    background-color: var(--white-color);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marqueeBlk .more a:hover {
    background-color: var(--blue-color);
    color: var(--white-color);
}

.newsBlk {
    flex: 1;
    display: flex;
}

@media (max-width:991px) {
    .newsBlk {
        display: block;
    }
}

.newsBlk .title {
    margin-right: 2rem;
    margin-top: 1.75rem;
}

@media (max-width:991px) {
    .newsBlk .title {
        margin-right: 0rem;
        flex-direction: row;
    }
}

@media (max-width:480px) {
    .newsBlk .title {
        flex-direction: column;
    }
}

.news-content {
    /* align-self: center; */
    flex: 1;
}

section .title {
    text-align: center;
    display: flex;
    flex-direction: column;
}

section .title h2::before {
    content: '❛❛';
    font-size: 2.5rem;
    color: var(--green-color);
    position: absolute;
    top: -19px;
    left: -29px;
    writing-mode: initial;
}

section .title h2::after {
    content: '❜❜';
    font-size: 2.5rem;
    color: var(--blue-color);
    text-align: right;
    position: absolute;
    bottom: -30px;
    right: -29px;
    writing-mode: initial;
}


section .title h2 {
    font-family: "Noto Serif TC", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--blue-color);
    position: relative;
    writing-mode: vertical-lr;
    margin-bottom: 2rem;
}

@media (max-width:991px) {
    section .title h2 {
        writing-mode: initial;
        margin: 2rem;
    }
}

@media (max-width:480px) {
    section .title h2 {
        font-size: 2rem;
    }
}

section .title .more {
    flex-grow: 1;
}

section .title .more>i {
    font-size: 3rem;
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blue-color);
}

@media (max-width:480px) {
    section .title .more>i {
        height: 50px;
        width: 50px;
        font-size: 2rem;
    }
}

@media (max-width:991px) {
    section .title .more {
        display: flex;
        align-items: center;
        flex-grow: 1;
        margin-left: 2rem
    }
}

@media (max-width:480px) {
    section .title .more {
        margin-left: 0rem
    }
}

section .title .more::before {
    content: '';
    display: block;
    width: 2px;
    height: calc(100% - 100px);
    background-color: var(--blue-color);
    margin: 0 auto;
}

@media (max-width:991px) {
    section .title .more::before {
        width: 100%;
        height: 2px;
    }
}



section .title .more a {
    display: flex;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    color: var(--white-color);
    background-color: var(--blue-color);
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
    padding-top: 10px;
    flex-shrink: 0;
    transition: all 0.3s;
}

@media (max-width:991px) {
    section .title .more a {
        display: flex;
        width: 80px;
        height: 80px;
    }
}

@media (max-width:480px) {
    section .title .more a {
        width: initial;
        height: initial;
        flex-direction: row;
        border-radius: 20px;
        padding: 0.25rem 1rem;
        font-size: 1rem;
    }
}

section .title .more a:hover {
    background-color: var(--green-color);
}

section .title .more a i {
    font-size: 1.75rem;
}

.news-list {
    padding: 0 1rem;
    max-width: 790px;
}

@media (max-width:1024px) {
    .news-list {
        max-width: initial;
    }
}

.news-list ul {
    margin: 0;
    padding: 0;
}

.news-list ul li {
    list-style: none;
    border-bottom: var(--gray-color-30) 1px solid;
}

.news-list ul li a {
    display: flex;
    text-decoration: none;
    line-height: 1;
    padding: 1rem 0;
    align-items: baseline;
    color: var(--gray-color-70);
}

@media (max-width:480px) {
    .news-list ul li a {
        flex-wrap: wrap;
    }
}

.news-list ul li a::after {
    content: '\F133';
    font-family: bootstrap-icons;
    margin-left: auto;
    color: #ddd;
    transition: all 0.3s;
}

@media (max-width:991px) {
    .news-list ul li a::after {
        display: none;
    }
}

.news-list ul li a:hover::after {
    transform: translateX(3px);
    color: var(--blue-color);
}

.news-list ul li a .date {
    flex-shrink: 0;
    margin-right: 1rem;
    border-right: var(--gray-color-50) 1px solid;
    padding-right: 1rem;
    color: var(--green-color);
}

@media (max-width:480px) {
    .news-list ul li a .date {
        width: 100%;
        margin-bottom: 0.75rem;
        border-right: none;
    }
}

.news-list ul li a .text {
    line-height: 1.65;
    margin-right: 1rem;
    word-break: break-word;
}

@media (max-width:991px) {
    .news-list ul li a .text {
        margin-right: 0rem;
        margin-bottom: 0rem;
    }
}

.news-list ul li a:hover .text {
    color: var(--blue-color);
}

.talkBlk {
    display: flex;
    flex-direction: row-reverse;
    margin: 8rem 0;
}

@media (max-width:991px) {
    .talkBlk {
        display: block;
        margin: 3rem 0;
    }
}

.talkBlk .title {
    margin-left: 3rem;
}

@media (max-width:991px) {
    .talkBlk .title {
        margin-left: 0rem;
        flex-direction: row;
    }
}

@media (max-width:480px) {
    .talkBlk .title {
        flex-direction: column;
    }
}

.talk-content {
    flex: 1;
}

.talk-content p {
    margin-bottom: 0.25rem;
}

.talk-content .text {
    width: 100%;
    margin-bottom: 3rem;
    margin-top: 1rem;
}

@media (max-width:575px) {
    .talk-content .text {
        margin-bottom: 2rem;
    }
}

.talkBnt {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.talkBnt .item {
    width: 46%;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    transition: all 0.05s;
}

.talkBnt .item:hover {
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
    transform: translate(3px, 3px)
}

.talkBnt .item:nth-of-type(1) {
    background-color: var(--blue-light-color);
    ;
}

.talkBnt .item:nth-of-type(2) {
    background-color: var(--green-light-color);
}

@media (max-width:1170px) {
    .talkBnt .item {
        width: 48%;
    }
}

@media (max-width:575px) {
    .talkBnt .item {
        width: 100%;
        margin: 1rem;
    }
}


.talkBnt .item a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
    padding: 4rem 1.5rem;
    color: var(--blue-color);
}

@media (max-width:768px) {
    .talkBnt .item a {
        padding: 3rem 1.5rem 2rem 1.5rem;
    }
}

.talkBnt .item a>div {
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.talkBnt .item a img {
    margin-right: 2rem;
}

@media (max-width:768px) {
    .talkBnt .item a img {
        margin-right: 0rem;
    }
}

.talkBnt .item a h3 {
    font-family: "Noto Serif TC", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    width: 100px;
}

@media (max-width:768px) {
    .talkBnt .item a h3 {
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }
}

@media (max-width:480px) {
    .talkBnt .item a h3 {
        font-size: 2rem;
    }
}

.talkBnt .item a p {
    font-size: 1rem;
    margin-top: 1.5rem;
    text-align: center;
    max-width: 305px;
    color: var(--gray-color-70);
}

@media (max-width:768px) {
    .talkBnt .item a p {
        margin-top: 0.5rem;
        margin-bottom: 0;
    }
}

/* .talkBnt .item:hover {
    transform: translateY(-3px);
} */

.eventBlk {
    display: flex;
    margin: 8rem 0 0 0;
}

@media (max-width:991px) {
    .eventBlk {
        flex-direction: column
    }
}

.eventBlk .title {
    margin-top: 1rem;
    margin-right: 3rem
}

@media (max-width:991px) {
    .eventBlk .title {
        margin: 0 0 1rem 0;
        flex-direction: row;
    }
}

@media (max-width:480px) {
    .eventBlk .title {
        flex-direction: column;
    }
}

.event-content {
    display: flex;
    flex-wrap: wrap;
}

.event-content .item {
    width: calc(100% / 3 - 2rem);
    margin: 1rem;
}

@media (max-width:1200px) {
    .event-content .item {
        width: calc(100% / 2 - 2rem);
    }
}

@media (max-width:991px) {
    .event-content .item {
        width: calc(100% / 3 - 1rem);
        margin: 0.5rem;
    }
}

@media (max-width:768px) {
    .event-content .item {
        width: calc(100% / 2 - 1rem);
    }
}

@media (max-width:575px) {
    .event-content .item {
        width: 100%;
        margin: 0.5rem 0;
    }
}

.event-content .item a {
    aspect-ratio: 4 / 3;
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.event-content .item a .text {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white-color);
    font-size: 1.125rem;
    padding: 1.5rem;
    background-color: var(--blue-color-50);
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.event-content .item a .text .info {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    line-height: 1;
}

.event-content .item a .text .info .date {
    margin-right: 1rem;
    border-right: var(--white-color) 1px solid;
    padding-right: 1rem;
}

.event-content .item a:hover .text {
    opacity: 1;
    visibility: visible;
}

.event-content .item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s
}

.event-content .item a:hover img {
    transform: scale(1.05);
}

footer {
    background-color: var(--green-color);
    color: var(--white-color);
    position: relative;
    padding: 0 1.5rem;
    font-size: 1rem;
}

footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 200px;
    border-radius: 100%;
    background: inherit;
    top: -200px;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: -1;
}

footer a {
    text-decoration: none;
    color: var(--white-color);
    font-size: 1rem;
}

footer a:hover {
    text-decoration: underline;
}

footer .wrapper {
    display: flex;
    justify-content: space-between;
    padding: 0rem 1rem 5rem 1rem;
    flex-wrap: wrap;
}

@media (max-width:991px) {
    footer .wrapper {
        padding: 2rem 1rem 5rem 1rem;
    }
}

footer ul {
    margin: 0;
    padding: 0;
}

footer ul li {
    list-style: none;
}

.footer-info {
    margin-bottom: 3rem
}

.footer-info li {
    display: flex;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.footer-info li i {
    margin-right: 0.5rem
}

.related-links .title {
    font-family: "Noto Serif TC", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue-color);
    position: relative;
    margin: 0 0.5rem 2rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.related-links .title .more {
    margin-left: 0.5rem
}

.related-links .title .more a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--blue-color);
    color: var(--white-color);
    font-size: 1.25rem;
}

.footer-info li>div {
    margin-right: 1rem
}

.related-links ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    width: 100%;
}

.related-links ul li {
    width: 100%;
    margin: 0.5rem 0 !important;
    list-style: none;
}

@media (max-width:991px) {
    .related-links ul li {
        width: calc(50% - 1rem);
        margin: 0.5rem !important;
    }
}

@media (max-width:767px) {
    .related-links ul li {
        width: 100%;
        margin: 0.5rem 0 !important;
    }
}

.related-links ul li a {
    font-weight: 500;
    padding: 0.5rem 1rem;
    display: block;
    text-decoration: none;
    border-radius: 10px;
    background-color: var(--green-light-color);
    color: var(--blue-color);
    font-size: 1rem;
}


.related-links ul li a:hover {
    background-color: var(--green-color);
    color: var(--white-color);
}

.related-links ul li a i {
    float: right;
    margin-left: 0.5rem;
}

@media (max-width:991px) {
    .footer-nav {
        display: none;
    }
}


.footer-nav ul:not(.submenu) {
    width: 458px;
}

.footer-nav>ul>li {}

.footer-nav>ul>li:has(.submenu) {
    float: left;
    margin-right: 2rem;
}

.footer-nav ul li a {
    font-size: 1.125rem;
    line-height: 2;
}

.footer-nav .submenu {
    margin-top: 0.25rem;
    min-height: 100px;
}

.footer-nav .submenu li {
    width: 100%;
}

.footer-nav .submenu+a {
    margin-top: 1rem !important;
}

.footer-nav .submenu~a {
    display: block;
    margin: 0.5rem 0;
}

.footer-nav .submenu li a {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
}

.footer-nav p {
    margin-bottom: 0.75rem
}

.copyright {
    margin-top: 2rem;
}

.index main {
    position: relative;
    margin-top: -200px;
    padding-top: 200px;
    margin-bottom: 200px;
    padding-bottom: 1px;
}

main {
    position: relative;
    margin-top: 180px;
    padding-top: 0px;
    margin-bottom: 300px;
    padding-bottom: 1px;
}

@media (max-width:991px) {
    main {
        margin-bottom: 200px;
    }
}

main::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 200px;
    border-radius: 100%;
    background: inherit;
    top: -200px;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: -1;
    background-color: var(--white-color);
}

.index main::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 200px;
    border-radius: 100%;
    background: inherit;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: -1;
    background-color: var(--white-color);
}

.gradient-bg-top {
    width: 100%;
    height: 800px;
    background: linear-gradient(0deg, rgba(210, 249, 249, 1) 0%, rgba(255, 255, 255, 1) 100%);
    position: absolute;
    z-index: -2;
    top: -800px;
}

@media (max-width:768px) {
    .index .gradient-bg-top {
        background: linear-gradient(0deg, rgba(210, 249, 249, 1) 0%, rgba(255, 255, 255, 1) 60%);
    }
}

.index .gradient-bg-down {
    width: 100%;
    height: 800px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(210, 249, 249, 1) 100%);
    position: absolute;
    z-index: -1;
}


.gradient-bg-down {
    width: 100%;
    height: 300px;
    background: linear-gradient(0deg, rgba(210, 249, 249, 1) 0%, rgba(255, 255, 255, 1) 100%);
    position: absolute;
    z-index: -1;
}

.dropdown-menu {
    width: 200px;
    border-radius: 30px;
    border: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.5s;
    display: block;
}

.dropdown-menu a {
    line-height: 40px;
    font-size: 1.125rem
}

.dropdown-menu.show {
    padding: 0.5rem 0.75rem;
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    transition: all ease 0.5s;
}

@media (max-width:991px) {
    .dropdown-menu {
        position: initial;
        width: 100%;
    }
}

.detail {
    min-height: calc(100vh - 873px);
}

.detail>.title {
    text-align: center;
}

.detail>.title h2::before {
    content: '❛❛';
    font-size: 2.5rem;
    color: var(--green-color);
    position: absolute;
    top: -19px;
    left: -29px;
    writing-mode: initial;
}

.detail>.title h2::after {
    content: '❜❜';
    font-size: 2.5rem;
    color: var(--blue-color);
    text-align: right;
    position: absolute;
    bottom: -30px;
    right: -29px;
    writing-mode: initial;
}

@media (max-width:575px) {
    .detail>.title h2::before, .detail>.title h2::after {
        font-size: 2rem;
    }
}

.detail>.title h2 {
    font-family: "Noto Serif TC", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--blue-color);
    position: relative;
    text-align: center;
    display: inline-block;
}

@media (max-width:767px) {
    .detail>.title h2 {
        font-size: 2rem;
    }
}

.detail .line {
    width: 2px;
    height: 20px;
    background-color: var(--blue-color);
    margin: 0 auto 1rem auto;
}

.breadcrumb {
    justify-content: center;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--gray-color-90);
}

.sidebar {
    background-color: var(--green-light-color);
    margin-left: calc(50% - 800px);
    padding: 5rem 4rem;
    border-radius: 50px 0 0 50px;
    margin-top: 4rem;
    position: sticky;
    top: 100px;
    margin-bottom: 50px;
    transition: all 0.3s
}

@media (max-width:1600px) {
    .sidebar {
        margin-left: initial;
    }
}

@media (max-width:1280px) {
    .sidebar {
        padding: 5rem 2rem;
    }
}

@media (max-width:991px) {
    .sidebar {
        margin: 0rem 0 2rem 0;
        border-radius: 30px;
        top: 65px;
        z-index: 1;
        padding: 0;
        background-color: var(--green-color);
    }
}

.sidebar ul {
    margin: 0 !important;
    padding: 0;
}

@media (max-width:991px) {
    .sidebar ul {
        position: initial !important;
        transform: initial !important;
        padding: 0 !important;
    }
}

.sidebar li {
    list-style: none;
    margin-bottom: 1rem;
    width: 100%;
}

@media (max-width:991px) {
    .sidebar li {
        margin-bottom: 0;
    }

    .sidebar li.active {
        display: none;
    }
}

.sidebar li>a {
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--gray-color-90);
    display: block;
    padding: 0.75rem 2rem;
    width: 260px;
}

@media (max-width:991px) {
    .sidebar li>a {
        font-size: 1.125rem;
        width: 100%;
        /* line-height: 1.5; */
        padding: 0.25rem 2rem;
    }
}

.sidebar li.active>a, .sidebar li:hover>a {
    color: var(--white-color);
    background-color: var(--blue-color);
    border-radius: 30px;
    /* width: 100%; */
}


.sidebar button {
    border: none;
    padding: 0.75rem 2rem;
    width: 100%;
    border-radius: 30px;
    text-align: left;
    background-color: initial;
    font-size: 1.125rem;
    display: none;
    color: var(--white-color);
}

@media (max-width:991px) {
    .sidebar button {
        display: block;
    }
}

.sidebar button::after {
    content: '\F282';
    font-family: bootstrap-icons;
    float: right;
    transition: all 0.3s;
}

.sidebar button.show::after {
    transform: rotate(180deg);
}

.content {
    background-color: var(--white-color);
    border-radius: 50px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 1400px;
    overflow: hidden;
    padding: 5rem;
    margin: 0 auto;
}

@media (max-width:1400px) {
    .content {
        margin: 0 1.5rem
    }
}

@media (max-width:991px) {
    .content {
        margin: 0;
        border-radius: 50px;
        padding: 3rem 2rem;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width:575px) {
    .content {
        padding: 3rem 1.5rem;
    }
}

.sidebar+.content {
    border-radius: 50px 0 0 50px;
    width: 100%;
    max-width: initial;
    min-height: 860px;
    margin: 0;
}

@media (max-width:991px) {
    .sidebar+.content {
        border-radius: 50px;
        min-height: initial;
    }
}


.secnav {
    display: flex;
    margin-left: 3rem;
}

@media (max-width:991px) {
    .secnav {
        display: none;
    }
}

.secnav::before {
    content: '';
    display: block;
    width: 2px;
    background-color: var(--blue-color);
}

.secnav a {
    display: block;
    text-decoration: none;
    margin-left: 2rem;
    margin-bottom: 0.25rem;
    color: var(--gray-color-80);
}

.secnav a:hover {
    color: var(--blue-color);
}

.secnav-innder {
    padding: 1rem 0;
}

.centercontent {
    margin-top: 6rem;
}

.centercontent:has(.sidebar) {
    display: flex;
    margin-top: 6rem;
    align-items: flex-start;
}

@media (max-width:991px) {
    .centercontent, .centercontent:has(.sidebar) {
        display: block;
        padding: 0 1.5rem;
        margin-top: 4rem;
    }
}

.leftBlk, .rightBlk {
    /* width: 50%; */
}

@media (max-width:900px) {
    .leftBlk {
        width: 100%;
    }


}

.pc {
    display: block;
}

.mobi {
    display: none;
}

@media (max-width:480px) {
    .pc {
        display: none;
    }

    .mobi {
        display: block;
    }
}

.modal-header {
    background-color: var(--green-color);
    padding: 0.75rem 1.25rem;
    color: var(--white-color);
    font-weight: 500;
}

.modal input {
    margin-bottom: 1rem
}

.modal .input-group .text a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background-color: var(--blue-color);
    color: var(--white-color);
    margin: 0;
    font-size: 1.125rem;
    border-radius: 0 5px 5px 0
}

.modal .login-form {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
}

@media (max-width:480px) {
    .modal .login-form {
        padding: 1rem;
    }
}

.modal .btn-close {
    background-image: none;
    padding: 0;
    width: initial;
    height: initial;
    margin-right: 0.125rem;
}

.modal .btn-close::before {
    content: '\F659';
    font-family: 'bootstrap-icons';
}

.modal .modal-header .btn-close::before {
    color: var(--white-color);
}

.modal .modal-body .btn-close {
    position: absolute;
    right: 1rem;
}

.modal .modal-body .text {
    letter-spacing: 1px;
}

.modal .modal-body .text p {
    color: var(--gray-color-70);
}

.send {
    margin: 0.5rem 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.send a, .send button {
    display: block;
    background-color: var(--blue-color);
    color: #fff !important;
    text-decoration: none;
    padding: 0 1.5rem;
    text-align: center;
    border-radius: 30px;
    line-height: 46px;
    outline: none;
    border: none;
    margin: 0.5rem;
    min-width: 150px;
}

.send a:hover, .send button:hover, .send .btn:first-child:active {
    background-color: var(--green-color);
}

.modal .text a {
    text-decoration: none;
    font-size: 0.95rem;
    color: var(--gray-color-90);
    margin: 0 0.5rem
}

.informationBlk {
    display: flex;
    flex-wrap: wrap;
    margin: 5rem 0;
}

@media (max-width:1024px) {
    .informationBlk {
        margin: 0;
    }
}

.loginBlk {
    width: 360px;
    flex-shrink: 0;
    background-color: var(--green-light-color);
    border-radius: 30px;
    margin: 1rem 2rem 0 0;
    overflow: hidden;
}

@media (max-width:1024px) {
    .loginBlk {
        width: 100%;
        margin-bottom: 2rem
    }
}

.loginBlk-inner .title {
    flex-direction: row;
    justify-content: center;
    background-color: var(--green-color);
    color: var(--white-color);
    padding: 0.75rem;
    font-weight: 500;
    font-size: 1.25rem;
}

.loginBlk-inner .title i {
    margin-right: 0.25rem
}

.login-form {
    padding: 2rem 2rem 0.5rem 2rem;
}

@media (max-width:430px) {
    .login-form {
        padding: 2rem 1rem 0.5rem 1rem;
    }
}

.login-form input {
    border-radius: 20px;
    line-height: 30px;
    margin: 0 0 1rem 0;
    padding: .375rem 1rem;
}

.login-form .input-group:has(#turnstileWidget) {
    justify-content: center;
}

.login-form .input-group:has(#turnstileWidget) .check-item {
    margin: 0;
    padding: 0;
}

.login-form .input-group:has(.verify-img) {
    align-items: center;
    margin-bottom: 1rem;
}

.login-form .input-group:has(.verify-img) input {
    border-radius: 20px !important;
    margin-right: 0.5rem;
    margin-bottom: 0;
}

.login-form .input-group:has(.verify-img) button {
    background-color: var(--blue-color);
    color: var(--white-color);
    border-radius: 50% !important;
    aspect-ratio: 1 / 1;
    font-size: 1.125rem;
}

.login-form .input-group .verify-img {
    width: 100px;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.login-form .input-group .verify-icon {
    margin-bottom: 0.5rem;
}

.login-form .input-group .verify-icon a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background-color: var(--blue-color);
    color: var(--white-color);
    border-radius: 0 20px 20px 0;
}

.login-form .text {
    text-align: center;
}

.login-form .text a {
    font-size: 0.9rem;
    margin: 0 0.25rem;
    color: var(--gray-color-70);
    text-decoration: none;
}

.login-form .text a:hover {
    color: var(--green-color);
}

.login-form .send button {
    width: 100%;
    margin: 0;
    line-height: 40px
}

.login-form .send a {
    width: 100%;
    margin: 0.5rem 0;
    line-height: 40px
}

.login-form .send.flex-nowrap a {
    width: 50%;
    margin: 0;
    min-width: initial;
}

.recent-events {
    padding: 0.5rem 2rem 1rem 2rem;
}

.recent-events:has(.more-events) {
    padding: 0.5rem 2rem;
}

.recent-events ul {
    margin: 0;
    padding: 0;
}

.recent-events ul li {
    list-style: none;
    border-bottom: #c7c7c7 1px solid;
    padding: 0.5rem 0;
    margin: 0;
    border-radius: 0;
}

.recent-events ul li:last-child {
    border-bottom: none;
}

.recent-events:has(.more-events) ul li {
    border-bottom: #c7c7c7 1px solid;
}

.recent-events ul li .date {
    font-size: 0.9rem;
    color: var(--green-color);
}

.recent-events ul li .date::before {
    background-color: var(--green-color);
    padding: 0 0.75rem 0.125rem 0.75rem;
    margin-right: 0.5rem;
    font-size: 0.85rem;
    border-radius: 20px;
    color: #fff
}

.recent-events ul li.today .date::before {
    content: '今日';
}

.recent-events ul li.recent .date::before {
    content: '近期活動';
}

.recent-events ul li a {
    text-decoration: none;
    font-size: 1rem;
    color: var(--gray-color-70);
}

.recent-events ul li a:hover {
    color: var(--blue-color);
}

.sidebar+.content .content-inner {
    max-width: 1140px;
}

.detail h3 {
    font-size: 1.75rem;
    color: var(--gray-color-90);
    margin: 2rem 0;
    letter-spacing: 1px;
}

.detail .title h3 {
    font-family: "Noto Serif TC", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-color);
    margin-bottom: 3rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.detail .title h3::before {
    content: '';
    display: block;
    flex-grow: 1;
    height: 1px;
    background-color: var(--blue-color);
    margin-right: 1rem
}

.detail .title h3::after {
    content: '';
    display: block;
    flex-grow: 1;
    height: 1px;
    background-color: var(--blue-color);
    margin-left: 1rem;
}

.content-inner .title:has(h3) {
    position: relative;
}

.content-inner .title:has(h3)::before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--green-color);
    position: absolute;
    top: 12px;
    left: 0px;
}

.content-inner .title:has(h3)::after {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--green-color);
    position: absolute;
    top: 12px;
    right: 0px;
}

/* @media (max-width:480px) {
    .content-inner .title:has(h3)::before,
    .content-inner .title:has(h3)::after,
    .content-inner .title:has(h3) h3::before,
    .content-inner .title:has(h3) h3::after {
        content:none;
    }
} */

.downloadBlk {
    margin-bottom: 3rem;
}

.downloadBlk ul {
    margin: 0 !important;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.downloadBlk li {
    list-style: none;
    margin: 0.5rem 0;
}

.downloadBlk li a {
    display: inline-block;
    min-width: 200px;
    border: var(--blue-color) 1px solid;
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    margin: 0.25rem;
    text-decoration: none;
    font-weight: 600;
    color: var(--blue-color);
    transition: all 0.3s
}

@media (max-width:575px) {
    .downloadBlk li a {
        min-width: initial;
    }
}

.downloadBlk li a:hover {
    background-color: var(--blue-color);
    color: #fff
}

.downloadBlk li a::before {
    font-family: bootstrap-icons;
    float: right;
    margin-left: 0.5rem;
    font-weight: normal;
}

.detail h4 {
    margin: 2rem 0;
    line-height: 1.6;
}

.timeline ul {
    border-left: 2px solid var(--blue-color);
    position: relative;
    text-align: left;
    margin-left: 170px !important;
    padding: 0;
}

@media (max-width:575px) {
    .timeline ul {
        margin-left: 0px !important;
    }
}

.timeline ul li {
    padding: 1rem .5rem 0.5rem 0rem;
    position: relative;
    display: block;
    margin-left: 1.25rem !important;
}


.timeline ul li:before {
    position: absolute;
    display: block;
    left: -190px;
    content: attr(data-date);
    text-align: right;
    background-color: var(--green-light-color);
    border-radius: 20px;
    padding: 0 1rem;
    width: 150px;
    text-align: center;
    font-size: 1rem;
}

@media (max-width:575px) {
    .timeline ul li:before {
        position: initial;
        margin-bottom: 0.5rem
    }
}

.timeline ul li:after {
    position: absolute;
    display: block;
    background: var(--blue-color);
    height: 10px;
    width: 10px;
    content: "";
    border-radius: 50%;
    top: 26px;
    left: -26px;
}

.hr {
    width: 100%;
    display: block;
    height: 1px;
    background-color: #ddd;
    margin: 3rem 0;
}

.detail ol:not(.breadcrumb) {
    padding: 0 0 0 2.5rem;
}

.detail ol:not(.breadcrumb)>li {
    counter-increment: num-counter;
    margin: 1rem 0;
    list-style: none;
    position: relative;
}

.detail ol:not(.breadcrumb)>li::before {
    content: counter(num-counter);
    background: var(--green-light-color);
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1rem;
    position: absolute;
    left: -2.5rem;
}

.award-slider {
    position: relative;
    padding: 0 70px;
    margin: 5rem 0;
}

@media (max-width:768px) {
    .award-slider {
        padding: 0;
    }
}

.award-slider::after {
    content: '';
    position: absolute;
    top: 0px;
    right: 50px;
    width: 80px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 60%);
}

@media (max-width:768px) {
    .award-slider::after {
        content: none
    }
}

.award-slider .item {
    background-image: url('../images/award-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    font-family: "Noto Serif TC", sans-serif;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
}

@media (max-width:480px) {
    .award-slider .item {
        width: 100px;
        height: 100px;
    }
}

.award-slider .item .text {
    font-size: 1.35rem;
    text-align: center;
    line-height: 1.2;
    color: var(--gray-color-90);
}

@media (max-width:480px) {
    .award-slider .item .text {
        font-size: 1rem;
    }
}

.award-slider .item span {
    display: block;
    font-size: 1rem;
    margin: 0.35rem 0 2rem 0;
    font-family: 'Noto Sans TC';
    font-weight: 400;
}

@media (max-width:480px) {
    .award-slider .item span {
        font-size: 0.85rem;
        margin: 0.125rem 0 1.75rem 0;
    }
}

.owl-nav button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--blue-color);
    color: var(--white-color);
    border: none;
    position: absolute;
    display: flex;
    justify-content: center;
    top: calc(50% - 34px);
    align-items: center;
}

@media (max-width:820px) {
    .owl-nav button {
        top: calc(50% - 40px);
    }
}

.owl-nav button.disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
}

.owl-nav button:hover {
    background-color: var(--green-color);
}

.owl-nav button::before {
    font-family: bootstrap-icons;
    font-size: 2rem;
}

.owl-prev {
    left: -23px;
}

.owl-prev::before {
    content: '\F12C';
}

.owl-next {
    right: -23px;
}

.owl-next::before {
    content: '\F135';
}

.detail .img-full {
    /* margin: 3rem 0; */
    text-align: center;
}

.person-cards {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.person-cards .item {
    /* box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1); */
    border-radius: 20px;
    margin: 1rem;
    display: flex;
    width: calc(100% / 2 - 2rem);
    overflow: hidden;
    height: 150px;
    background-color: var(--green-light-color);
    border: var(--blue-light-color) 1px solid;
    position: relative;
}

@media (max-width:820px) {
    .person-cards .item {
        width: calc(100% / 1 - 2rem);
    }
}

@media (max-width:429px) {
    .person-cards .item {
        height: 130px;
    }
}

.person-cards .item::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(232, 241, 247, 1) 100%);
    transition: all 0.3s
}

.person-cards .item:hover::before {
    opacity: 0;
}

.person-cards .item .photo {
    width: 120px;
    flex-shrink: 0;
    margin-right: 35px;
    transition: all 0.3s;
    position: relative;
    z-index: 0;
}

@media (max-width:429px) {
    .person-cards .item .photo {
        width: 100px;
        margin-right: 18px;
    }
}

.person-cards .item .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 30% 0 0;
    box-shadow: 3px 0px 10px rgba(0, 0, 0, 0.1);
}

.person-cards .item .text {
    flex: 1;
    align-self: center;
    position: relative;
    z-index: 0;
}

.person-cards .item .text h5 {
    font-family: "Noto Serif TC", sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-color-90);
    letter-spacing: 1px;
    margin-bottom: 1rem;
    margin-top: 0;
}

@media (max-width:1200px) {
    .person-cards .item .text h5 {
        margin-bottom: 0.5rem;
    }
}

.person-cards .item .text p {
    margin-bottom: 0;
    color: var(--gray-color-70);
    line-height: 1.4;
    font-size: 1rem;
}


.person-cards .item .area {
    position: absolute;
    top: 3px;
    right: 42px;
    color: var(--gray-color-70);
    width: 32px;
    line-height: 1.25;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
    font-family: "Noto Serif TC", sans-serif;
}

@media (max-width:1200px) {
    .person-cards .item .area {
        position: initial;
        margin-bottom: 0.25rem;
        width: initial;
        height: initial;
        display: block;
        text-align: left;
    }
}

@media (max-width:991px) {
    .person-cards .item .area {
        position: absolute;
        margin-bottom: 0.25rem;
        width: 32px;
        height: 50px;
        display: flex;
        text-align: center;
    }
}

@media (max-width:460px) {
    .person-cards .item .area {
        position: initial;
        margin-bottom: 0.25rem;
        width: initial;
        height: initial;
        display: block;
        text-align: left;
    }
}

.person-cards .item .area::before {
    content: '';
    width: 90px;
    height: 90px;
    border: #fff 3px solid;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    outline: #fff 1px solid;
    outline-offset: -6px;
}

@media (max-width:1200px) {
    .person-cards .item .area::before {
        content: none;
    }
}

@media (max-width:991px) {
    .person-cards .item .area::before {
        content: '';
    }
}

@media (max-width:460px) {
    .person-cards .item .area::before {
        content: none;
    }
}

.person-cards .item .area::after {
    content: '會員代表';
    font-size: 0.725rem;
    display: block;
    position: absolute;
    width: 52px;
    top: 50px;
    left: -10px;
    color: var(--gray-color-70);
    text-decoration: overline;
    text-decoration-color: var(--white-color);
    font-family: 'Noto Sans TC';
    font-weight: 400;
}

@media (max-width:1200px) {
    .person-cards .item .area::after {
        position: initial;
        text-decoration: none;
        display: inline-block;
        margin-left: 0.5rem;
        font-size: 0.9rem;
        width: initial;
        border-left: var(--gray-color-50) 1px solid;
        padding-left: 0.5rem
    }
}

@media (max-width:991px) {
    .person-cards .item .area::after {
        position: absolute;
        text-decoration: overline;
        text-decoration-color: var(--white-color);
        display: block;
        margin-left: 0;
        font-size: 0.725rem;
        width: 52px;
        border-left: none;
        padding-left: 0
    }
}

@media (max-width:460px) {
    .person-cards .item .area::after {
        position: initial;
        text-decoration: none;
        display: inline-block;
        margin-left: 0.5rem;
        font-size: 0.9rem;
        width: initial;
        border-left: var(--gray-color-50) 1px solid;
        padding-left: 0.5rem
    }
}

.person-cards .item .title {
    position: absolute;
    top: 0px;
    right: 40px;
    color: var(--gray-color-70);
    line-height: 1.25;
    font-size: 1.125rem;
    font-weight: 800;
    font-family: "Noto Serif TC", sans-serif;
    width: 72px;
    text-align: center;
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width:1200px) {
    .person-cards .item .title {
        position: initial;
        margin-bottom: 0.25rem;
        width: initial;
        height: initial;
        display: block;
        text-align: left;
    }

    .person-cards .item .title br {
        display: none;
    }
}

@media (max-width:991px) {
    .person-cards .item .title {
        position: absolute;
        margin-bottom: 0.25rem;
        width: 72px;
        height: 85px;
        display: flex;
        text-align: center;
    }

    .person-cards .item .title br {
        display: block;
    }
}

@media (max-width:460px) {
    .person-cards .item .title {
        position: initial;
        margin-bottom: 0.25rem;
        width: initial;
        height: initial;
        display: block;
        text-align: left;
    }

    .person-cards .item .title br {
        display: none;
    }
}

.person-cards .item .title::before {
    content: '';
    width: 90px;
    height: 90px;
    border: #fff 3px solid;
    border-radius: 50%;
    position: absolute;
    top: -2px;
    outline: #fff 1px solid;
    outline-offset: -6px;
    left: -8px;
}

@media (max-width:1200px) {
    .person-cards .item .title::before {
        content: none
    }
}

@media (max-width:991px) {
    .person-cards .item .title::before {
        content: '';
    }
}

@media (max-width:460px) {
    .person-cards .item .title::before {
        content: none
    }
}


.listBlk ol {
    padding: 0 0 0 0 !important;
    margin: 1rem 0 !important;
}

.listBlk ol li {
    margin: 0 !important;
    display: flex;
    align-items: center;
    padding-left: 3rem;
}

@media (max-width:768px) {
    .listBlk ol li {
        align-items: baseline;
    }
}

.listBlk ol li::before {
    left: 0px !important;
}

.listBlk ul {
    padding: 0;
}

.listBlk ul li {
    list-style: none;
}

.listBlk ul li a {
    flex-wrap: wrap;
}


.listBlk li {
    border-bottom: #ddd 1px solid;
    padding: 1.25rem 0;
}

.listBlk li a {
    display: flex;
    font-size: 1.25rem;
    text-decoration: none;
    /* line-height: 1; */
    width: 100%;
    color: var(--gray-color-90);
    align-items: center;
}

@media (max-width:768px) {
    .listBlk li a {
        flex-wrap: wrap;
    }
}

.listBlk li a .info {
    display: flex;
    font-size: 1rem;
    align-items: center;
}

@media (max-width:383px) {
    .listBlk li a .info {
        font-size: 16px;
    }
}

.listBlk li.top a .info::after {
    content: '置頂';
    background-color: #ffe670;
    margin: 0 1rem;
    padding: 0rem 1rem;
    font-size: 13px;
    border-radius: 20px;
}

@media (max-width:383px) {
    .listBlk li.top a .info::after {
        position: absolute;
        right: 21px;
        padding: 0rem 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.listBlk li a .date {
    color: var(--green-color);
    border-right: var(--gray-color-70) 1px solid;
    padding-right: 1rem;
    margin-right: 1rem;
    display: flex;
    line-height: 1;
}

@media (max-width:383px) {
    .listBlk li a .date {
        padding-right: 0.5rem;
        margin-right: 0.5rem;
    }
}

.listBlk li a i {
    margin-left: 0.5rem;
}

/* @media (max-width:768px) {
    .listBlk li a .date {
        border-right: none;
    }
} */

.listBlk li a .category {
    color: var(--blue-color);
}

.listBlk li a .text {
    flex-grow: 1;
}

@media (max-width:768px) {
    .listBlk li a .text {
        width: 100%;
        margin-top: 0.5rem;
    }
}

.listBlk ul li a .text {
    width: 100%;
    margin-top: 0.75rem;
    line-height: 1.6;
}

.listBlk li a:hover .text {
    color: var(--blue-color);
}

.listBlk li a::after {
    font-family: bootstrap-icons;
    margin-left: 0.5rem;
    font-weight: normal;
}

.downloadBtn {
    background-color: #f1f1f1;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem 1rem;
    border-radius: 20px
}

.downloadBtn::before {
    font-family: bootstrap-icons;
    font-weight: normal;
    font-size: 1rem;
    margin-right: 0.125rem
}

.page {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 1rem;
}

@media (max-width:991px) {
    .page {
        justify-content: center;
    }
}

.page ul {
    margin: 0 !important;
    flex-wrap: wrap;
}

.page ul li {
    margin: 0 0.25rem !important;
}

.page a {
    text-decoration: none;
    border-radius: 50%;
    min-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.page a:hover {
    background-color: #f1f1f1;
}

.page a[title="第一頁"]:hover, .page a[title="上一頁"]:hover,
.page a[title="下一頁"]:hover, .page a[title="最後一頁"]:hover {
    background-color: initial;
}

.page .active a {
    background-color: var(--blue-color);
    color: #fff !important;
}

@media (max-width:991px) {
    .page-display {
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }
}

.content-inner .title {
    margin-bottom: 3rem;
}

@media (max-width:991px) {
    .content-inner .title {
        margin-bottom: 0rem;
    }

    .content-inner .title+.title {
        margin-top: 3rem;
    }
}

.content-inner .title .info {
    display: flex;
    font-size: 1rem;
    border-bottom: #ddd 1px solid;
    padding-bottom: 1.25rem;
    align-items: flex-end;
    position: relative;
}

/* @media (max-width:480px) {
    .content-inner .title .info {
        padding-top: 2rem;
    }
} */

.content-inner .title .info .date {
    color: var(--green-color);
    display: flex;
    line-height: 1;
}

.content-inner .title .info .category {
    color: var(--blue-color);
    line-height: 1;
    border-left: var(--gray-color-70) 1px solid;
    padding-left: 1rem;
    margin-left: 1rem;
}

.content-inner .title .info .back {
    margin-left: auto;
}

/* @media (max-width:480px) {
    .content-inner .title .info .back {
        position: absolute;
        top: -1.5rem;
        right: 3rem
    }

    .content-inner .title .info .talk {
        position: absolute;
        top: -1.5rem;
        right: 0px
    }
} */

.content-inner .title .info a {
    display: block;
    text-align: center;
    color: var(--white-color);
    background-color: var(--blue-color);
    width: 40px;
    height: 40px;
    line-height: 36px;
    border-radius: 50%;
    font-size: 1.25rem;
    margin: 0 0 0 0.5rem;
    position: relative;
}

.content-inner .title .info a:hover {
    background-color: var(--green-color);
}


.content-inner .title .info a span {
    position: absolute;
    bottom: 40px;
    left: calc(50% - 38px);
    display: block;
    width: 70px;
    white-space: initial;
    background-color: var(--white-color);
    border-radius: 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.3s
}

.content-inner .title .info a:hover span {
    opacity: 1;
    transform: translateY(-3px)
}

.content-inner .title .info a:hover span::before {
    content: '';
    display: block;
    position: absolute;
    bottom: -8px;
    left: calc(50% - 4px);
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: #fff transparent transparent transparent;
    transition: all 0.3s
}

.detail .img {
    max-width: 900px;
    margin: 3rem auto;
    /* text-align: center; */
    position: relative;
}

.detail .img .text, .detail .youtube .text, .detail .img-full .text {
    margin: 0.5rem;
}

.detail .img .text>*, .detail .youtube .text>*, .detail .img-full .text>* {
    margin: 0;
    /* text-align: center; */
    font-size: 1rem
}

.detail h5 {
    margin: 2rem 0;
    line-height: 1.8;
}

.detail h6 {
    font-size: 1.125rem;
    margin: 2rem 0;
    line-height: 1.8;
}

.detail .text .heading {
    font-size: 1rem;
    margin: 2rem 0;
    line-height: initial;
    display: initial;
}

.detail strong {
    font-weight: bold;
    background-color: #ffe670;
}

.detail p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.detail span {
    font-size: 1rem;
    color: var(--gray-color-70);
}

.detail ul, .detail ol {
    margin: 2rem 0;
}

.detail ul li::marker {
    color: var(--green-color);
}

.imgBlk {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    position: relative;
}

.imgBlk .item {
    width: calc(100% / 4 - 1rem);
    margin: 0.5rem;
}

@media (max-width:991px) {
    .imgBlk .item {
        width: calc(100% / 3 - 1rem);
    }
}

@media (max-width:768px) {
    .imgBlk .item {
        width: calc(100% / 2 - 1rem);
    }
}

.imgBlk .item a {
    aspect-ratio: 4 / 3.25;
    overflow: hidden;
    border-radius: 20px;
    display: block;
    position: relative;
}

.imgBlk .item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s
}

.imgBlk .item a:hover img {
    transform: scale(1.05);
}

.imgBlk .item a .text {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 109, 166, 1) 80%);
    width: 100%;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    padding: 6px 14px;
}

.activitiesBlk .event-content .item a .text {
    font-size: 1.125rem;
    padding: 1.25rem;
    opacity: 1;
    visibility: visible;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(0, 109, 166, 1) 100%);
}

@media (max-width:991px) {
    .activitiesBlk .event-content .item a .text {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 109, 166, 1) 100%);
    }
}

@media (max-width:767px) {
    .activitiesBlk .event-content .item a .text {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(0, 109, 166, 1) 100%);
    }
}

.activitiesBlk .event-content .item a .text span {
    color: var(--white-color);
}

.enent-silder {
    /* margin: 5rem 0; */
}

.largeImg, .smallImg {
    max-width: 900px;
    margin: 1rem auto;
    position: relative;
}

.largeImg .item {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #f1f1f1; */
    border-radius: 30px;
}

@media (max-width:767px) {
    .largeImg .item {
        height: initial;
    }
}

.largeImg .item .zoom {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: var(--blue-color);
    color: var(--white-color);
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.largeImg .item img {
    max-width: 900px;
    max-height: 60vh;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.largeImg .owl-prev {
    left: -60px;
}

@media (max-width:991px) {
    .largeImg .owl-prev {
        left: -23px;
    }
}

.largeImg .owl-next {
    right: -60px;
}

@media (max-width:991px) {
    .largeImg .owl-next {
        right: -23px;
    }
}

.smallImg .item {
    border-radius: 14px;
}

.smallImg .item a {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    display: block;
}

.smallImg .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owl-dots {
    text-align: center;
    margin: 1rem 0;
}

.owl-dots button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin: 0.25rem;
    background-color: #ddd;
    border: none;
}

.owl-dots button:hover {
    background-color: var(--green-light-color);
}

.owl-dots button.active {
    background-color: var(--green-color);
}

.youtube {
    max-width: 900px;
    margin: 3rem auto;
    overflow: hidden;
}

@media (max-width: 480px) {
    .youtube {
        width: 95%;
    }
}

.video-container {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
}

.video-container iframe,
.video-container object,
.video-container embed {
    width: 100%;
    height: 100%;
}

.row .img, .row .youtube {
    width: 100%;
    margin: 0;
}

.detail .heading:has(i) {
    line-height: 35px;
    font-size: 1.5rem;
    color: var(--gray-color-90);
    margin: 0 0 1.5rem 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    width: 100%;
}

.detail .heading:has(i):after {
    content: '';
    display: block;
    height: 1px;
    background-color: var(--gray-color-90);
    flex: 1;
    margin-left: 10px;
}

.detail .heading i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    width: 35px;
    height: 35px;
    font-weight: 400;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white-color);
    background-color: var(--green-color);
}

.row:has([class*="col-"]) {
    /* margin: 0 -1.5rem; */
}

.row [class*="col-"] {
    /* padding-left: 1.5rem;
    padding-right: 1.5rem; */
}

.detail .row [class*="col-"] .heading {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* .detail .table-responsive table {
    min-width: 530px;
} */

.detail table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    margin-bottom: 1.5rem;
    padding: 2px;
}

.detail table tbody tr {
    background-color: var(--blue-lightgray-color);
    border-radius: 30px;
}

.detail table tbody tr:nth-of-type(odd) {
    background-color: var(--green-light-color);
}

.detail table tbody tr:hover {
    box-shadow: 0px 0px 0px 2px var(--green-color);
}

.detail table th {
    padding: 10px 25px;
    line-height: 1.5;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white-color);
    white-space: nowrap;
    background-color: var(--green-color);
}

@media (max-width:575px) {
    .detail table th {
        padding: 10px 16px;
        font-size: 1rem;
    }
}

.detail table th:first-of-type {
    border-radius: 30px 0 0 30px;
}

.detail table th:last-of-type {
    border-radius: 0 30px 30px 0;
}

.detail table td {
    padding: 13px 25px;
    line-height: 1.5;
}

@media (max-width:575px) {
    .detail table td {
        padding: 10px 16px;
        font-size: 1rem;
    }
}

.detail table td:first-child, .detail .card table th:first-child {
    border-radius: 30px 0 0 30px;
}

.detail table td:last-child, .detail .card table th:last-child {
    border-radius: 0 30px 30px 0;
}

.detail .card table th[colspan="2"] {
    border-radius: 30px;
}

.detail a {
    text-decoration: none;
    color: var(--blue-color);
    word-break: break-word;
}

.detail a:hover {
    color: var(--green-color);
}

.detail .accordion .accordion-item {
    margin-bottom: 1rem;
    border: none;
}

.detail .accordion .accordion-item .accordion-button {
    border-radius: 30px !important;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 13px 25px;
    background-color: var(--blue-color);
    box-shadow: none;
    color: var(--white-color);
}

.detail .accordion .accordion-item .accordion-button.collapsed {
    background-color: var(--blue-light-color);
    color: var(--gray-color-90);
}

.detail .accordion .accordion-button::after {
    content: "\F282";
    font-family: 'bootstrap-icons';
    background-image: none;
    line-height: 1;
}

.detail .accordion .accordion-body .heading {
    font-weight: 500;
    margin-bottom: 0.5rem
}

.detail .accordion .accordion-body p {
    /* font-size:1rem; */
}

.linkBlk ul li {
    margin: 0.5rem 0;
}

.linkBlk ul li a::after {
    content: "\f1c5";
    font-family: 'bootstrap-icons';
    margin-left: 0.5rem;
}

.imgBlk.slider-group .owl-carousel {
    margin: 0.5rem;
}

.imgBlk.slider-group .item {
    width: 100%;
    margin: initial;
}

.imgBlk.videoBlk .item a {
    position: relative;
    overflow: hidden;
}

.imgBlk.videoBlk .item a::before {
    content: '';
    background-color: var(--blue-color-50);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    opacity: 1;
    transition: all 0.3s;
}

.imgBlk.videoBlk .item a::after {
    content: '\F4F3';
    font-family: 'bootstrap-icons';
    color: var(--white-color);
    position: absolute;
    top: 43%;
    left: 41%;
    z-index: 1;
    font-size: 2.5rem;
    transition: all 0.3s;
}

.imgBlk.videoBlk .item a:hover::before, .imgBlk.videoBlk .item a:hover::after {
    opacity: 0;
}

.recent {
    background-color: var(--green-light-color);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    margin: 1rem 0;
}

.marqueeBlk .recent {
    display: flex;
}

.FbBlk {
    width: 360px;
    flex-shrink: 0;
    background-color: var(--green-light-color);
    border-radius: 30px;
    margin: 1rem 2rem 0 0;
    overflow: hidden;
}

.login-form .input-group input {
    margin: 0 0 1rem 0;
}

.read {
    /* max-width: 760px; */
    margin: 2rem 0;
}

.read a {
    display: block;
    outline: var(--gray-color-50) 1px solid;
    padding: 0.75rem 1rem;
    border-radius: 30px;
    text-align: center;
    font-size: 1.25rem;
    transition: all 0.2s;
}

.read a:hover {
    background-color: var(--blue-color);
    outline: var(--blue-color) 1px solid;
    color: #fff
}

.read a>span {
    color: inherit;
    font-size: inherit;
}

.linkBlk {
    margin-bottom: 3rem
}

.formBlk {
    margin: 2rem auto;
    display: flex;
    flex-wrap: wrap;
    max-width: 900px;
}

.modal .formBlk {
    margin: 0 auto;
}

.formBlk.inline>div {
    display: inline-flex;
}

.formBlk .input-group, .formBlk .select-group, .formBlk .calendar-select {
    flex-wrap: initial;
    display: flex;
    align-items: center;
    margin: 0 0 1.75rem 0;
    width: 100%;
    position: relative;
}

@media (max-width:767px) {
    .formBlk .input-group, .formBlk .select-group, .formBlk .calendar-select {
        flex-wrap: wrap;
    }
}

.formBlk label, .formBlk .heading, .formBlk .title {
    flex-shrink: 0;
    padding: 0.5rem 1rem 0.5rem 0;
    border-radius: 30px 0 0 30px;
    min-width: 120px;
    /* text-align: right; */
    white-space: nowrap;
    position: relative;
    font-weight: 500;
    font-size: 1.125rem;
    width: initial;
    margin-bottom: 0;
}

@media (max-width:767px) {
    .formBlk .heading {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

.formBlk .heading+.check-item:has(.options-caption) {
    margin-top: 0.5rem
}

.formBlk input[type=text], .formBlk input[type=password],
.formBlk input[type=file], .formBlk input[type=date], .formBlk select {
    border-radius: 30px !important;
    padding: 0.5rem 1rem;
    line-height: 30px;
    border: var(--gray-color-50) 1px solid;
    margin: 0 0.5rem !important;
}

@media (max-width:767px) {

    .formBlk input[type=text], .formBlk input[type=password],
    .formBlk input[type=file], .formBlk input[type=date], .formBlk select {
        width: 100% !important;
        margin: 0 !important;
        flex: initial !important;
    }
}

@media (max-width:767px) {
    .formBlk input+select {
        margin-top: 0.5rem !important;
    }
}

.formBlk input[type=file] {
    padding: 0.5rem 1rem;
}

.formBlk span {
    margin: 0 0.5rem;
}

.formBlk .input-group:has(span),
.formBlk .select-group:has(span),
.formBlk .calendar-select:has(span) {
    white-space: nowrap;
}

.formBlk .required {
    position: absolute;
    top: 0px;
    left: -10px;
    color: red;
    margin: 0;
    text-align: initial !important;
    width: initial !important;
}

.formBlk .input-group:has(.verify-img) {
    align-items: center;
    margin-bottom: 1.5rem;
}

.formBlk .input-group:has(.verify-img) input {
    border-radius: 30px !important;
    margin-right: 0.5rem;
    margin-bottom: 0;
    border: var(--gray-color-50) 1px solid;
}

@media (max-width:767px) {
    .formBlk .input-group:has(.verify-img) input {
        margin-bottom: 0.5rem !important;
    }
}

.formBlk .input-group:has(.verify-img) button {
    background-color: var(--gray-color-40);
    color: var(--white-color);
    border-radius: 50% !important;
    aspect-ratio: 1 / 1;
    margin-left: 0.5rem !important;
    font-size: 1.25rem
}

.formBlk .input-group:has(.verify-img) button:hover {
    background-color: var(--gray-color-50);
}

.formBlk .input-group .verify-img {
    width: 100px;
    flex-shrink: 0;
    font-size: 1.125rem;
}

.formBlk .input-group:has(.row) {
    margin-bottom: 0;
}

.formBlk .input-group:has(.row) label {
    align-self: flex-start;
}

.formBlk .input-group label+.row {
    flex: 1;
    margin: 0;
}

@media (max-width:767px) {
    .formBlk .input-group label+.row {
        flex: initial;
        margin-bottom: 1.5rem
    }
}

.formBlk .row [class*="col-"] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

@media (max-width:767px) {
    .formBlk .row [class*="col-"] {
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .formBlk .row [class*="col-"]>* {
        margin-bottom: 0
    }
}

.formBlk .row [class*="col-"] label {
    min-width: initial;
    font-weight: 400;
    font-size: 1rem;
}

.formBlk .check-group, .formBlk .radio-group {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 1.5rem;
}

.formBlk .check-group h5, .formBlk .radio-group h5 {
    margin: 0;
}

.formBlk .check-group:has(.options-caption) h5, .formBlk .radio-group:has(.options-caption) h5 {
    width: 100%;
    margin-bottom: 1.5rem
}

.formBlk .check-item {
    width: initial;
    padding-left: 2rem;
    margin: 0rem 0.5rem;
    display: flex;
    align-items: center;
}

.formBlk .check-item:has(.options-caption) {
    flex-wrap: wrap;
}

.formBlk .check-item.w-100 {
    width: 100%;
    margin: 0.5rem 0.5rem 0 0.5rem;
}

@media (max-width:767px) {
    .formBlk .check-item.w-100 {
        align-items: flex-start;
    }

    .formBlk .check-item.w-100>input[type=radio] {
        margin-top: 0.25rem
    }
}

.formBlk .check-item label {
    padding: 0 0.5rem 0 0;
    min-width: initial;
    /* flex-shrink: initial; */
    white-space: initial;
}

.formBlk .check-item:has(.options-caption) label {
    white-space: nowrap;
    margin-right: 1rem;
}

.formBlk .check-item label:has(input) {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

@media (max-width:767px) {
    .formBlk .check-item label:has(input) {
        flex-wrap: wrap;
        flex-grow: 1;
        flex-shrink: initial;
    }

    .formBlk .check-item label:has(input) input {
        margin-top: 0.25rem !important;
    }
}

.formBlk input[type=checkbox] {
    width: 25px;
    height: 25px;
    margin: 0 0.5rem 0 -2rem;
    border: var(--gray-color-50) 1px solid;
    padding: 0;
    border-radius: 0.25rem !important;
}

.formBlk input[type=radio] {
    width: 25px;
    height: 25px;
    margin: 0 0.5rem 0 -2rem;
    border: var(--gray-color-50) 1px solid;
    padding: 0;
}

.formBlk input[type=checkbox]:checked, .formBlk input[type=radio]:checked {
    background-color: var(--blue-color);
    border-color: var(--blue-color);
}

.formBlk .options-caption {
    display: block;
    margin: 0 0 0.5rem 0;
    width: 100%;
    white-space: initial;
}

.formBlk .options-caption ol, .formBlk .options-caption ul {
    margin: 0 0 2rem 0;
}

@media (max-width:575px) {
    .formBlk .options-caption ol {
        padding: 0 0 0 0.5rem;
    }
}

.formBlk .options-caption ol ol, .formBlk .options-caption ol ul,
.formBlk .options-caption ul ol, .formBlk .options-caption ul ul {
    margin: 0.5rem 0 1rem 0;
}

@media (max-width:575px) {
    .formBlk .options-caption ol ul {
        padding: 0;
    }
}

.formBlk .input-group:has(textarea) label {
    align-self: flex-start
}

.formBlk textarea {
    border-radius: 20px !important;
    border: var(--gray-color-50) 1px solid;
    margin: 0 0.5rem !important;
}

@media (max-width:767px) {
    .formBlk textarea {
        width: 100% !important;
        margin: 0 !important;
    }
}

.modal .formBlk textarea {
    margin: 0 !important;
}


.formBlk .input-group:has(textarea) {
    flex-wrap: wrap;
}

.formBlk .input-group:has(textarea) span {
    width: 100%;
    text-align: end;
}

.formBlk .form-control:disabled, .form-select:disabled {
    border: none;
    background-color: var(--green-lightgray-color);
    background-image: initial;
}

.formBlk .info {
    width: 100%;
}

.formBlk .info+.hr {
    margin-bottom: 5rem;
}

.formBlk .info .row [class*="col-"] label {
    min-width: 112px;
}

.formBlk .info .row:has([class*="col-"]) {
    margin: 0 -0.5rem;
}

.formBlk .table-responsive {
    width: 100%
}

.login-content {
    padding: 0;
    min-height: 400px;
    display: flex;
}

@media (max-width:1024px) {
    .login-content {
        flex-wrap: wrap
    }
}

.login-img {
    width: 500px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width:1024px) {
    .login-img {
        width: 100%;
        padding-top: 3rem;
    }
}

@media (max-width:575px) {
    .login-img img {
        width: 50%
    }
}

.login-content .formBlk {
    padding: 2rem 5rem 1rem 0rem;
    flex-direction: column;
    width: 100%;
    justify-content: center;
}

@media (max-width:1024px) {
    .login-content .formBlk {
        padding: 2rem 2rem 1rem 2rem;
    }
}

@media (max-width:480px) {
    .login-content .formBlk {
        padding: 2rem 1rem 1rem 1rem;
    }
}

@media (max-width:383px) {
    .login-content .formBlk {
        padding: 2rem 0rem 1rem 0rem;
    }
}

.login-content .formBlk label {
    /* min-width: 80px !important; */
}

.login-content .text {
    text-align: center;
    width: 100%;
    margin-top: 1rem;
}

.login-content .text a {
    margin: 0 0.5rem;
    font-size: 1rem;
    color: var(--gray-color-70);
}

.login-content .text a:hover {
    color: var(--blue-color);
}

.detail ol li ul {
    margin: 0.5rem 0 1rem 0;
}

.detail ol li ul li {
    list-style-type: disc;
}

.login-content .check-group {
    justify-content: center
}

.login-content .check-group .invalid-feedback {
    text-align: center;
}

.login-content .check-group .check-item {
    margin: 0
}

.signature {
    width: 100%;
    position: relative;
    margin: 0 1.5rem 3rem 2.5rem;
}

@media (max-width:575px) {
    .signature {
        margin: 2rem 0rem 3rem 0rem;
    }
}

.signature h5 {
    margin: 0.5rem 0;
}

.signature .signature-content {
    position: absolute;
    bottom: 16px;
    right: 0px;
    width: 300px
}

@media (max-width:850px) {
    .signature .signature-content {
        position: relative;
        bottom: initial;
        margin-top: 2rem;
        margin-left: auto;
    }
}

@media (max-width:575px) {
    .signature .signature-content {
        margin-left: 0;
        width: 100%;
    }
}

.signature .sign-img {
    display: flex;
    margin-bottom: 0.5rem;
    border-bottom: var(--gray-color-50) 1px solid;
}

.signature .sign-img .img {
    margin: 0 0.5rem;
    height: 50px;
    overflow: hidden;
}

.signature .sign-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.signature .sign-img p {
    flex-shrink: 0;
    align-self: flex-end;
    font-weight: 500;
}

.signature .input-group {
    border-bottom: var(--gray-color-50) 1px solid;
    margin-bottom: 0;
}

.signature .input-group label {
    min-width: initial;
    padding: 0;
}

.signature .input-group input {
    border: none;
    border-radius: 0px !important;
    padding: 0.5rem;
}

.uploadBtn {
    background-color: #f5f5f5;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 8px;
}

table .uploadBtn {
    position: initial;
    background-color: var(--white-color);
    color: var(--gray-color-90);
}

.uploadBtn:hover {
    background-color: #eaeaea;
}

.completeBlk {
    text-align: center;
}

.caseBlk {
    max-width: 900px;
    margin: 0 auto;
}

.caseBlk>div {
    display: flex;
    border-bottom: #ddd 1px solid;
    padding: 1rem 0;
}

.caseBlk span {
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--gray-color-90);
    width: 120px;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.caseBlk .title {
    margin-bottom: 0;
    flex-wrap: wrap;
}

@media (max-width:767px) {
    .caseBlk .title .text {
        width: 100%;
        margin-top: 0.5rem;
    }
}

.unprocessed::before {
    content: '\F33A';
    color: brown;
    font-family: bootstrap-icons;
    margin-right: 5px;
}

.processing::before {
    content: '\F291';
    color: var(--blue-color);
    font-family: bootstrap-icons;
    margin-right: 5px;
}

.closed::before {
    content: '\F26A';
    color: var(--green-color);
    font-family: bootstrap-icons;
    margin-right: 5px;
}

@media (max-width:767px) {
    .formBlk input~.check-item {
        margin-top: 0.5rem !important;
    }
}

.unverified {
    position: relative;
}

@media (max-width:991px) {
    .formBlk .input-group:has(.unverified) {
        flex-wrap: wrap;
    }

    .unverified {
        width: 100%;
        padding-left: 140px;
        margin-top: 0.5rem;
    }
}

@media (max-width:767px) {
    .unverified {
        padding-left: 0px;
    }
}

.unverified a span {
    position: absolute;
    bottom: 35px;
    left: calc(50% - 100px);
    display: block;
    width: 200px;
    white-space: initial;
    background-color: var(--white-color);
    border-radius: 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    opacity: 0;
    transition: all 0.3s
}

@media (max-width:991px) {
    .unverified a span {
        position: initial;
        opacity: initial;
        box-shadow: initial;
        width: initial;
        display: initial;
        padding: 0;
    }
}

.unverified a:hover span {
    opacity: 1;
    transform: translateY(-3px)
}

.unverified a:hover span::before {
    content: '';
    display: block;
    position: absolute;
    bottom: -8px;
    left: calc(50% - 4px);
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: #fff transparent transparent transparent;
    transition: all 0.3s
}

.detail .table-responsive.has-scrollbar::before {
    content: '向右滑看更多 ➨';
    position: sticky;
    left: 0px;
}

.sprite {
    width: 150px;
    height: 150px;
    background: url('../images/sprite.png') 0 0 no-repeat;
    margin-right: 1rem;
}

.talkBnt .item a:hover .sprite {
    animation: play 1s steps(8) infinite;
}

@keyframes play {
    100% {
        background-position: -1200px 0;
    }
}

.sprite-2 {
    width: 150px;
    height: 150px;
    background: url('../images/sprite-2.png') 0 0 no-repeat;
    margin-right: 1rem;
}

.talkBnt .item a:hover .sprite-2 {
    animation: play 1s steps(8) infinite;
}

@keyframes play2 {
    100% {
        background-position: -1200px 0;
    }
}

.formBlk .file-group {
    flex-wrap: initial;
    display: flex;
    margin: 0 0 1.5rem 0;
    width: 100%;
}

@media (max-width:767px) {
    .formBlk .file-group {
        flex-wrap: wrap;
    }
}

.file-upload {
    width: 100%;
}

.file-upload input {
    width: calc(100% - 1rem);
}

.file-upload ul {
    margin: 0;
    padding: 0 0.5rem;
}

.file-upload ul li {
    list-style: none;
    margin: 0.5rem;
}

.file-upload ul li::before {
    content: '\F392';
    font-family: 'bootstrap-icons';
}

.file-upload ul li span {
    margin: 0;
}

.file-upload ul li button {
    border: none;
    outline: none;
    background-color: initial;
    font-size: 0.975rem;
    color: var(--gray-color-70);
}

.file-upload ul li button:hover {
    color: var(--green-color);
}

.input-group:has(.file-name) {
    align-items: flex-start;
}


.file-name {
    flex-grow: 1;
}

@media (max-width:767px) {
    .file-name {
        width: 100%;
    }
}

.file-name ul {
    margin: 0;
    padding: 0;
}

.file-name ul li {
    background-color: var(--green-lightgray-color);
    border-radius: 30px !important;
    padding: 0.5rem 2.25rem 0.5rem 1.5rem;
    line-height: 30px;
    margin: 0 0.5rem 0.5rem 0.5rem;
    font-size: 1rem;
    list-style: none;
}

@media (max-width:767px) {
    .file-name ul li {
        margin: 0 0 0.5rem 0;
    }
}

.file-name ul li::before {
    content: '\F392';
    font-family: 'bootstrap-icons';
    margin-right: 0.25rem;
}

.lawBlk {
    margin: 5rem auto 0 auto;
}

.lawBlk label, .lawBlk .heading {
    min-width: 130px;
}

.check-group:has(.check-item-group), .radio-group:has(.check-item-group) {
    align-items: flex-start;
}

.check-item-group {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 130px);
    margin-bottom: 0.5rem;
}

@media (max-width:767px) {
    .check-item-group {
        width: 100%;
    }
}

.check-item-group .check-item {
    padding: 0.5rem 0 0.5rem 2.5rem;
    margin: 0 0.5rem;
}

.check-item-group .check-item:has(input[type="text"]) {
    width: 100%;
    flex-wrap: wrap;
}

.check-item-group .check-item label+input[type="text"] {
    flex: 1;
}

.check-item-group .options-caption {
    margin: 0.75rem 1rem 0.5rem 1rem;
}

@media (max-width:767px) {
    .check-item-group .options-caption {
        margin: 0 0 0.5rem 0;
    }
}

.send button.reset {
    background-color: var(--gray-color-50);
}

.send button.reset:hover {
    background-color: var(--gray-color-60);
}

.more-events {
    margin: 0.5rem 0 0.75rem 0;
    text-align: center;
}

.more-events a {
    text-align: right;
    font-size: 0.9rem;
    color: var(--gray-color-70);
    text-decoration: none;
}

.more-events a:hover {
    color: var(--green-color);
}

.calendar-setting {
    margin: 2rem 0;
}

.calendar-setting .date {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* line-height: 32px; */
}

.sr-only {
    display: none;
}

.calendar-setting .h3 {
    margin: 0 0.5rem;
}

.calendar-setting .prev, .calendar-setting .next {
    font-size: 1.5rem;
}

.today-btn {
    margin: 0 1rem;
}

.today-btn a {
    display: block;
    padding: 0 1rem;
    border-radius: 20px;
    background-color: var(--blue-color);
    color: var(--white-color);
}

.today-btn a:hover {
    background-color: var(--green-color);
    color: var(--white-color);
}

.list-btn a {
    display: block;
    padding: 0 1rem;
    border-radius: 20px;
    background-color: var(--green-color);
    color: var(--white-color);
}

.list-btn a:hover {
    background-color: var(--blue-color);
    color: var(--white-color);
}

@media (max-width:575px) {
    .today-btn, .list-btn {
        width: 100%;
        margin: 0.75rem 0 0 0;
        text-align: center;
    }

    .today-btn a, .list-btn a {
        padding: 0.25rem 1rem;
    }
}

.table {
    display: table;
}

.table .thead {
    display: table-header-group;
}

.table .tbody {
    display: table-row-group;
}

.table .tr {
    display: table-row;
}

.table .th, .table .td {
    display: table-cell;
}

@media (max-width:991px) {
    .detail .calendarBlk {
        /* border-radius: 30px; */
        /* overflow: hidden; */
        /* outline: #ddd 1px solid; */
    }
}

.detail .calendarBlk .table {
    border-radius: 30px;
    /* border: #ddd 1px solid; */
    overflow: hidden;
    /* outline: #ddd 1px solid; */
    margin-bottom: 0
}

@media (max-width:991px) {
    .detail .calendarBlk .table {
        border: #ddd 1px solid;
        overflow: initial;
        margin: 0;
        border-spacing: 0px;
        border-radius: 0;
        min-width: initial;
    }
}

.detail .calendarBlk .table .th,
.detail .calendarBlk .table .td {
    padding: 0.5rem 0.75rem;
    /* border-right: #ddd 1px solid; */
    border: #ddd 1px solid;
}

.detail .calendarBlk .table .th {
    text-align: center;
    color: var(--white-color);
    background-color: var(--green-color);
}

@media (max-width:991px) {
    .detail .calendarBlk .table .th {
        display: none
    }
}

.detail .calendarBlk .table .td {
    height: 100px;
    width: calc(100%/7);
}

@media (max-width: 991px) {
    .detail .calendarBlk .table .td {
        width: 100%;
        display: block;
        height: initial;
        padding: 0.5rem 0.75rem;
        border-right: none;
    }

    .detail .calendarBlk .table .tr:last-child .td:last-child {
        border-bottom: none;
    }
}

.detail .calendarBlk .table .day {
    color: var(--gray-color-90);
}

@media (max-width: 991px) {
    .detail .calendarBlk .table .day {
        text-align: left;
    }
}

.detail .calendarBlk .table .day span {
    display: none;
}

@media (max-width: 991px) {
    .detail .calendarBlk .table .day span {
        display: inline-block;
        margin-right: 0.5rem;
    }
}

.detail .calendarBlk .table .expired {
    background-color: #f5f5f5;
    opacity: 0.5;
}

.detail .calendarBlk .table .today {
    outline: var(--blue-color) 3px solid;
    background-color: #d8fafa;
}

.detail .calendarBlk .table .today .day {
    color: var(--white-color);
    position: relative;
    z-index: 1;
    /* padding-left: 5px; */
    width: 30px;
    height: 30px;
    text-align: center;
}

@media (max-width: 991px) {
    .detail .calendarBlk .table .today .day {
        padding-left: 0px;
        width: initial;
        text-align: left;
        color: var(--gray-color-90);
    }
}

.detail .calendarBlk .table .today .day::before {
    content: '';
    display: block;
    background-color: var(--blue-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    left: 0px;
}

@media (max-width: 991px) {
    .detail .calendarBlk .table .today .day::before {
        left: 35px;
        content: none;
    }
}

.detail .calendarBlk .reserve-event a {
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0.25rem 0;
    background-color: #fff7bb;
    border-radius: 10px;
    padding: 0 0.5rem;
    line-height: 1.6;
}

.table-calendar {
    padding: 0.5rem 2rem 1rem 2rem;
}

@media (max-width:430px) {
    .table-calendar {
        padding: 0.5rem 1rem 1rem 1rem;
    }
}

.supercal-header {
    display: flex;
    align-items: center;
    font-size: 1rem;
    border-bottom: var(--gray-color-50) 1px solid;
    padding-bottom: 0.25rem;
    margin-bottom: 0.25rem;
    font-weight: 500
}

.supercal-header button {
    border: none;
    outline: none;
    background-color: initial;
    color: var(--gray-color-70);
}

.supercal-header a {
    margin-left: auto;
    text-decoration: none;
    color: var(--gray-color-70);
    font-weight: 400;
    font-size: 0.9rem;
}

.supercal-header button:hover, .supercal-header a:hover {
    color: var(--green-color);
}

.table-calendar table {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
}

.table-calendar table th {
    padding-bottom: 0.5rem;
    width: calc(100% / 7);
}

.table-calendar table tbody tr:nth-of-type(odd) {
    background-color: var(--white-color-75);
    border-radius: 30px
}

.table-calendar table td:first-child,
.table-calendar .card table th:first-child {
    border-radius: 30px 0 0 30px;
}

.table-calendar table td:last-child,
.table-calendar .card table th:last-child {
    border-radius: 0 30px 30px 0;
}

.month-prev, .month-next {
    opacity: 0.8;
}

.table-calendar table td.today {
    position: relative;
    color: var(--white-color);
    z-index: 1;
}

.table-calendar table td.today::before {
    content: '';
    background-color: var(--blue-color);
    color: var(--white-color);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: block;
    position: absolute;
    z-index: -1;
    top: calc(50% - 11px);
    left: calc(50% - 11px);
}

.table-calendar table td.event a {
    font-weight: 500;
    color: var(--green-color);
}

.table-calendar table td.event {
    position: relative;
}

.table-calendar table td.event:hover::before {
    content: '';
    background-color: var(--blue-color);
    color: var(--white-color);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: block;
    position: absolute;
    z-index: -1;
    top: calc(50% - 11px);
    left: calc(50% - 11px);
}

.promoBlk {
    display: flex;
    margin: 8rem 0 0 0;
}

@media (max-width:991px) {
    .promoBlk {
        flex-direction: column-reverse;
        margin: 3rem 0 0 0;
    }
}

.promoBlk .title {
    margin-top: 1rem;
    margin-left: 3rem;
    flex-shrink: 0;
}

@media (max-width:991px) {
    .promoBlk .title {
        margin: 0 0 1rem 0;
        flex-direction: row;
    }
}

@media (max-width:480px) {
    .promoBlk .title {
        flex-direction: column;
    }
}

.promoBlk .owl-carousel {
    width: calc(100% - 185px);
}

@media (max-width:991px) {
    .promoBlk .owl-carousel {
        width: 100%;
    }
}

.promoBlk .owl-carousel .owl-stage-outer {
    padding: 80px 0;
}

@media (max-width:815px) {
    .promoBlk .owl-carousel .owl-stage-outer {
        padding: 0;
    }
}

.promoBlk .owl-carousel .owl-item.center {
    transform: scale(1.5);
    z-index: 2;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    filter: brightness(1);
}

.promoBlk .owl-carousel .owl-item {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    filter: brightness(0.75);
}

@media (max-width:815px) {
    .promoBlk .owl-carousel .owl-item {
        filter: initial;
    }
}

.promoBlk .owl-carousel .owl-item.active {
    transition: all 0.3s;
}

.promoBlk .owl-carousel .item a {
    aspect-ratio: 16 / 9;
    display: block;
    position: relative;
}

.promoBlk .owl-carousel .item a .text {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white-color);
    font-size: 1.125rem;
    padding: 1.5rem;
    background-color: var(--blue-color-50);
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.promoBlk .owl-carousel .item a:hover .text {
    opacity: 1;
    visibility: visible;
}

.promoBlk .owl-carousel .item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s
}

.promoBlk .owl-carousel .item a:hover img {
    transform: scale(1.05);
}

.input-group .invalid-feedback,
.select-group .invalid-feedback,
.calendar-select .invalid-feedback {
    position: absolute;
    top: 50px;
    left: 130px;
    line-height: 1;
}

.formBlk .row [class*="col-"] .input-group .invalid-feedback {
    left: 0px;
}

@media (max-width:767px) {

    .input-group .invalid-feedback,
    .select-group .invalid-feedback,
    .calendar-select .invalid-feedback {
        position: initial;
    }
}

.input-group:has(textarea) .invalid-feedback {
    position: initial;
}

.invalid-feedback::before {
    content: '\F332';
    margin-right: 0.25rem;
    font-family: bootstrap-icons;
    vertical-align: bottom;
}

.related-links {
    margin: 5rem 0 200px 0;
    display: flex;
    flex-wrap: wrap;
}

.formBlk .input-group:has(#turnstileWidget) {
    justify-content: center;
}

.formBlk .input-group:has(#turnstileWidget) .check-item {
    margin: 0;
    padding: 0;
}

.detail .table {
    border-collapse: separate;
    border-spacing: 0 10px;
    margin: 1.5rem 0;
    padding: 2px;
    /* min-width: 820px; */
}

.detail .table .thead {
    display: table-header-group;
}

.detail .table .tbody {
    display: table-row-group;
}

.detail .table .tr {
    background-color: var(--blue-lightgray-color);
    border-radius: 30px;
}

@media (max-width:991px) {
    .detail .table .tr {
        background-color: initial;
    }
}

.detail .table .tr:nth-of-type(odd) {
    background-color: var(--green-light-color);
}

@media (max-width:991px) {
    .detail .table .tr:nth-of-type(odd) {
        background-color: initial;
    }
}

.detail .table .tr:hover {
    box-shadow: 0px 0px 0px 2px var(--green-color);
}

.detail .table .th,
.detail .table .td {
    display: table-cell;
}

.detail .table .th {
    padding: 10px 25px;
    line-height: 1.5;
    font-weight: 600;
    color: var(--white-color);
    white-space: nowrap;
    background-color: var(--green-color);
}

.detail .table .th:first-of-type {
    border-radius: 30px 0 0 30px;
}

.detail .table .th:last-of-type {
    border-radius: 0 30px 30px 0;
}

.detail .table .td {
    padding: 13px 25px;
    line-height: 1.5;
}

@media (max-width:575px) {
    .detail .table .td {
        font-size: 1rem;
    }
}

.detail .table .td:first-child {
    border-radius: 30px 0 0 30px;
}

@media (max-width:991px) {
    .detail .table .td:first-child {
        border-radius: 0px;
    }
}

.detail .table .td:last-child {
    border-radius: 0 30px 30px 0;
}

@media (max-width:991px) {
    .detail .table .td:last-child {
        border-radius: 0px;
    }
}

.detail .table .td a {
    background-color: initial;
    padding: 0;
}

.detail .table .td a::before {
    content: none;
}

.detail .table .td p {
    margin-top: 0.25rem;
}

.Chmn .title::after {
    content: '理事長';
}

.Exec .title::after {
    content: '常務理事';
    width: 50px;
}

.Dir .title::after {
    content: '理事';
}

.Conv .title::after {
    content: '監事會召集人';
    width: 60px;
}

.Supv .title::after {
    content: '監事';
}

.detail table thead tr {
    background-color: var(--green-color);
}

.detail table thead tr td {
    color: var(--white-color);
    font-weight: bold;
}

nav[aria-label="breadcrumb"] {
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width:1400px) {
    nav[aria-label="breadcrumb"] {
        margin: 0 1.5rem;
    }
}

.breadcrumb {
    flex-wrap: nowrap;
}

.breadcrumb li {
    flex-shrink: 0;
}

.breadcrumb li:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-grow: 1;
    flex-shrink: initial;
}

.news-list ul li a .text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width:991px) {
    .news-list ul li a .text {
        display: block;
    }
}

.oc-drag-element .content-inner .title .info {
    padding-right: 25px;
}

.content-inner.oc-drag-element .title .info {
    padding-right: 25px;
}

.detail table thead tr {
    background-color: var(--green-color);
}

.detail table thead tr td {
    color: var(--white-color);
}

.related-links .link-items {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.related-links .link-items>div {
    margin: 0 1.5rem;
    flex: 1;
}

@media (max-width:991px) {
    .related-links .link-items>div {
        margin: 1rem;
        flex: initial;
        width: 100%
    }
}

.related-links .link-items h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: center;
    font-size: 1.25rem
}

@media (max-width:991px) {
    .related-links .link-items h4 {
        text-align: left;
    }
}

.related-links .linkBlk {
    margin-bottom: 0
}

.radio-group .title {
    margin-bottom: 0.5rem;
}

.detail .formBlk .check-group .check-item:has(.options-caption),
.detail .formBlk .radio-group .check-item:has(.options-caption),
.modal .formBlk .check-group .check-item:has(.options-caption),
.modal .formBlk .radio-group .check-item:has(.options-caption) {
    width: 100%;
    flex-wrap: wrap;
    margin-right: 0;
}

.smallImg .owl-item .item {
    opacity: .5;
    transition: .25s;
}

.smallImg .owl-item .item.is-active-thumb {
    opacity: 1;
    border: var(--green-color) 3px solid;
}

.slideCounter {
    text-align: center;
    margin: 1rem 0 0 0;
}

.detail .row [class*="col-"] .text .heading {
    font-size: 1rem;
}

.slider-group * {
    box-sizing: border-box;
}

@media (max-width:375px) {
    header.active>nav {
        padding-top: 60px;
    }

    header.active nav>ul {
        padding: 0.5rem 1.25rem !important;
    }

    header.active nav>ul>li>a {
        line-height: 46px;
    }

    .dropdown-menu a {
        line-height: 36px;
        font-size: 1rem;
    }

    header nav li .arrow {
        width: 28px;
        height: 28px;
    }
}

@media (max-width:400px) {

    .content:has(#turnstileWidget) {
        overflow: initial;
    }

    .formBlk .input-group #turnstileWidget {
        position: absolute;
        top: 0px;
    }

    .formBlk .input-group:has(#turnstileWidget) {
        margin-bottom: 80px
    }
}

@media (max-width:350px) {
    .formBlk .input-group #turnstileWidget {
        position: absolute;
    }
}