/*----------------------------- SAAS V2.0 -----------------------------*/
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

@font-face {
    font-family: 'inter';
    src: url(../fonts/inter-light.otf);
}

body {
    padding-right: 0px !important;
    font-size: 16px;
    font-family: "微軟正黑體", 'inter', "Microsoft JhengHei", sans-serif;
    letter-spacing: 1px;
    position: relative;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
label,
input,
ul {
    margin: 0;
    padding: 0;
}
p {
    margin-top: 0;
    margin-bottom: 10px;
}
ul {
    padding-inline-start: 0;
}

li {
    list-style: none;
}

/*--color root---*/
 



/*--color root end---*/

a {
    color: #333;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;

}

a:focus,
a:hover {
    text-decoration: none;
    outline: 0;
    color: var(--main-color);
    cursor: pointer;
}

img {
    border: 0;
    padding: 0;
    margin: 0;
    vertical-align: middle;
    width: 100%;
    height: auto;
}


/*-----gotop-----*/
.gotop {
    position: fixed;
    width: 48px;
    height: 48px;
    right: 26px;
    bottom: 40px;
    background: var(--main-color);
    border-radius: 50%;
    transition: display 0.5s ease-in-out;
    z-index: 1031;
}

.gotop i {
    font-size: 30px;
    position: absolute;
    top: 8px;
    left: 9px;
    color: #fff;
}

@media(max-width:767px) {
    .gotop {
        width: 36px;
        height: 36px;
        right: 15px;
    }

    .gotop i {
        font-size: 25px;
        left: 5px;
        top: 5px;
    }
}

.gotop:hover {
    color: #fff;
    background: var(--basic-color);
    transition: background 0.2s ease-in-out;
}

/*-----gotop end-----*/

/*-----right link-----*/
.right_link {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 99;
    width: 60px;
}

@media (max-width: 768px) {
    .right_link {
        right: 3px;
    }
}

.right_link a {
    text-align: center;
    display: inline-block;
    margin-bottom: 1em;
}

.right_link img {
    width: 80%;
}

@media (max-width: 767px) {
    .right_link {
        bottom: 110px;
    }

    .right_link img {
        width: 60%;
    }

    .right_link a {
        text-align: center;
        display: inline-block;
        margin-bottom: 10px;
    }
}

/*----right link end----*/




/* mobile nav */
.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: #fff;
    transition: 0.4s;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: var(--basic-color) !important;
    padding: 10px 20px;
    font-weight: 500;
    transition: 0.3s;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: var(--main-color) !important;
    text-decoration: none;
}



.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa0";
}



.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    background-color: transparent !important;
    padding-left: 20px;
}

.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 25px;
    z-index: 1031;
    border: 0;
    background: none;
    font-size: 25px;
    transition: all 0.3s;
    outline: none !important;
    line-height: 1;
}

.mobile-nav-toggle i {
    color: var(--main-color);
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 1030;
    top: 0;
    left: 0;
    position: fixed;
    background: var(--main-color);
    opacity: .8;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}


/*-----end-----*/



/*----- carousel -----*/

.carousel-caption {
    position: absolute;
    right: 0;
    top: 40%;
    left: 0;
    z-index: 10;
    padding-top: 0;
    padding-bottom: 0;
    color: #fff;
    text-align: left;
}

.carousel-caption h3 {
    font-size: 56px;
    font-weight: bold;
    text-shadow: 0px 0px 15px #0000002c;
}


.carousel-indicators {
    bottom: 0;
}

.carousel-control.right,
.carousel-control.left {
    background-image: none;
}

/* Animation delays */
.carousel-caption h3:first-child {
    animation-delay: 1s;
}

.carousel-caption h3:nth-child(2) {
    animation-delay: 2s;
}

.carousel-caption p {
    font-size: 32px;
    animation-delay: 3s;
}

.carousel-item img {
    min-height: auto;
    object-fit: cover;
}

@media (max-width: 992px) {
    .carousel-item img {
        min-height: 350px;
    }

    .carousel-caption {
        top: 25%;
    }

    .carousel-caption h3 {
        font-size: 45px;
    }
}

@media (max-width: 768px) {


    .carousel-caption h3 {
        font-size: 35px;
    }

    .carousel-caption p {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .carousel-item img {
        min-height: 200px;
    }

    .carousel-caption {
        top: 35%;
        text-align: center;
    }

    .carousel-caption h3 {
        font-size: 25px;
    }

    .carousel-caption p {
        font-size: 16px;
    }
}

/*-----end-----*/


/*---- basic setting -----*/
.section-page {
    padding: 80px 0;
}

@media (max-width: 992px) {
    .section-page {
        padding: 40px 0;
    }
}

.modal {
    padding-right: 0px !important;
}

.bg {
    background-image: url(../img/bg.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.omit-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.omit-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 5px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 5px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    color: #999;
}

footer {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 30px 0px;
    letter-spacing: 2px;
}

.in-banner {
    height: 350px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 992px) {
    .in-banner {
        height: 150px;
    }
}

.in-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.in-banner::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    background-color: hsla(0, 0%, 0%, 0.015);
    z-index: 1;
}

.in-banner .container {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.in-banner h1 {
        margin-top: 12%;
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-weight: 900;
    font-size: 32px;
    letter-spacing: 2px;
}
}

@media (max-width: 992px) {
    .in-banner h1 {
        margin-top: 110px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .in-banner h1 {
        margin-top: 60px;
        font-size: 20px;
    }
}

.breadcrumb {
    background-color: transparent;
    padding: 10px 0;
    margin: 0;
    color: #ccc;
    font-size: 14.5px;
    letter-spacing: 2px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #eee;
}

.breadcrumb-item a {
    color: #666;
}

.breadcrumb-item.active {
    color: var(--main-color);
}

/* ------ button ------ */
a.t1-button1 {
    display: block;
    width: 150px;
    background-color: var(--main-color);
    color: #fff;
    height: 50px;
    text-align: center;
    line-height: 50px;
    margin: 20px 0px;
    transition: .3s ease;
}

a.t1-button1:hover {
    background-color: var(--basic-color);
}

a.t1-button1.sm {
    width: 130px;
    height: 40px;
    line-height: 40px;
    margin: 35px 0 0 0;
    transition: .7s ease .1s;
}

a.t1-button2 {
    display: block;
    width: 150px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    height: 50px;
    text-align: center;
    line-height: 50px;
    margin: 20px 0px;
    transition: .3s ease;
}

a.t1-button2:hover {
    color: var(--basic-color);
    border-color: var(--basic-color);
}


a.t2-button1 {
    display: block;
    width: 150px;
    background-color: #fff;
    color: var(--main-color);
    height: 50px;
    border-radius: 0px 15px 0px 15px;
    border: 1px solid var(--main-color);
    text-align: center;
    line-height: 50px;
    margin: 20px 0px;
    transition: .6s ease;
}

a.t2-button1:hover {
    color: #999;
    border-color: #999;
    transform: scale(.95);
}

a.t2-button2 {
    display: block;
    width: 150px;
    background-color: var(--main-color);
    color: #fff;
    height: 50px;
    border-radius: 0px 15px 0px 15px;
    text-align: center;
    line-height: 50px;
    margin: 20px 0px;
    transition: .6s ease;
}

a.t2-button2:hover {
    transform: scale(.95);
    background-color: var(--green-color);

}

a.t3-button1 {
    display: block;
    width: 150px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 5px;
    color: var(--main-color);
    height: 50px;
    text-align: center;
    line-height: 50px;
    margin: 20px 0px;
    transition: .5s ease;
}

a.t3-button1:hover {
    color: #fff;
}

a.t3-button2 {
    display: block;
    width: 150px;
    border-radius: 5px;
    color: #fff;
    height: 50px;
    text-align: center;
    line-height: 50px;
    margin: 20px 0px;
    transition: .5s ease;
}

a.t3-button2:hover {
    background-color: var(--basic-color) !important;
}


a.t4-button1 {
    display: block;
    width: 150px;
    color: var(--basic-color);
    height: 50px;
    text-align: center;
    line-height: 50px;
    margin: 20px auto;
    transition: .5s ease;
    position: relative;
    letter-spacing: 4px;
}

a.t4-button1:hover {
    color: var(--main-color);
}

a.t4-button1::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--basic-color);
    transition: .3s ease .2s;
}

a.t4-button1::before {
    position: absolute;
    bottom: -1px;
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    transition: .3s ease;
    transform: scaleX(0);
}

a.t4-button1:hover::after {
    transform: scaleX(0);
    transition: .3s ease;
}

a.t4-button1:hover::before {
    transform: scaleX(1);
    transition: .3s ease .3s;
}

a.t5-button1 {
    display: block;
    width: 150px;
    color: var(--basic-color);
    height: 50px;
    text-align: left;
    padding-left: 22px;
    line-height: 50px;
    margin: 20px 0 0 auto;
    transition: .3s ease;
    position: relative;
    letter-spacing: 4px;
}

a.t5-button1:hover {
    color: var(--main-color);
    transform: translateX(6px);
}

a.t5-button1::after {
    position: absolute;
    bottom: -15px;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    transition: .3s ease;
    mask-repeat: no-repeat;
    background-image: url(../img/t5-button.svg);
    background-repeat: no-repeat;

}



a.t6-button1 {
    display: block;
    width: 120px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    border-radius: 30px;
    letter-spacing: 4px;
    background-color: var(--main-color);
    text-align: center;
    transition: .3s ease;
    margin-top: 20px;
}

a.t6-button1:hover {
    background-color: var(--basic-color);
}

/* ------ button end ------ */

.category {
    display: flex;
    justify-content: center;
}

.category li {
    list-style: none;
    width: fit-content;
    padding: 0 15px;
    margin: 0px 10px;
    height: 50px;
    line-height: 50px;
    letter-spacing: 2px;
    text-align: center;
    transition: .3s ease;
}

.category li a {
    font-size: 16px;
    display: block;
    transition: .3s ease;
}

@media (max-width: 992px) {
    .category {
        display: none;
    }

    .category li {
        width: 100%;
        margin: 0;
    }
}

@media (min-width: 992px) {
    .category {
        display: flex !important;
    }
}

.category-mb-menu {
    text-align: center;
    height: 40px;
    line-height: 40px;
    border: 1px solid #eee;
    transition: .3s ease;
    margin-bottom: 15px;
}

.category-mb-menu:hover {
    cursor: pointer;
    border-color: var(--main-color);
}

.category-mb-menu i {
    transition: .3s ease;
    font-size: 20px;
    color: #ccc;
}

.category-mb-menu:hover i {
    color: var(--main-color);
}

.sidenav-t {
        font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    color: #148ec9;
    border-bottom: 2px solid #148ec9;
    font-weight: 600;
}

.side-mb-menu {
    text-align: center;
    height: 40px;
    line-height: 40px;
    border: 1px solid #eee;
    transition: .3s ease;
    margin-bottom: 15px;
}

.side-mb-menu:hover {
    cursor: pointer;
    border-color: var(--main-color);
}

@media (max-width: 992px) {
    .sidenav {
        display: none;
    }
}

@media (min-width: 992px) {
    .sidenav {
        display: block !important;
    }
}


.sidenav>li {
    margin-bottom: 5px;
    transition: .3s ease;
}

.sidenav>li>a {
    display: block;
    width: 100%;
    padding: 10px 0px 10px 10px;
    letter-spacing: 2px;
    transition: .3s ease;
}

.sidenav>li ul {
    margin-top: 3px;
}

.sidenav>li ul li {
    margin-bottom: 3px;
}

.sidenav>li ul li a {
    display: block;
    width: 100%;
    padding: 10px 0px 10px 20px;
    transition: .3s ease;
}

@media (max-width: 992px) {
    .sidenav-t {
        border-bottom: none;
    }
}


.pagination {
    justify-content: center;
}

.pagination li {
    border: 1px solid #ccc;
    color: var(--basic-color);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin: 0 3px;
    border-radius: 5px;
    transition: .3s ease;
}

.pagination li a {
    font-family: 'inter';
    font-weight: 300;
    display: block;
    transition: .3s ease;
}

.pagination li:hover,
.pagination li.active {
    border-color: var(--main-color);
    background-color: var(--main-color);
    color: #fff;
}

.pagination li:hover a,
.pagination li.active a {
    color: #fff;
}

.swiper-pagination-bullet-active {
    background-color: var(--main-color);
}

.pdt-dt-swipper-thumbs .swiper-button-next::after,
.pdt-dt-swipper-thumbs .swiper-button-prev::after,
.pdt-dt-swipper .swiper-button-next::after,
.pdt-dt-swipper .swiper-button-prev::after {
    color: #fff;
}

.pdt-dt-swipper {
    height: 450px;
    margin-bottom: 10px;
}

.pdt-dt-swipper-thumbs {
    height: 100px;
}

@media (max-width: 450px) {
    .pdt-dt-swipper {
        height: 340px;
    }

    .pdt-dt-swipper-thumbs {
        height: 80px;
    }
}

.pdt-dt-swipper-thumbs .swiper-slide {
    opacity: .4;
    transition: .3s ease;
}

.pdt-dt-swipper-thumbs .swiper-slide:hover {
    cursor: pointer;
    opacity: 1;
}

.pdt-dt-swipper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.pdt-title {
    font-size: 22px;
    color: var(--basic-color);
    border-bottom: 2px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}


.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: var(--main-color);
}

.gallery-item {
    display: block;
    height: 200px;
    overflow: hidden;
    transition: .3s ease;
}

@media (max-width: 576px) {
    .gallery-item {
        height: 165px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .lg-thumb-item {
        opacity: .6;
    }

    .lg-thumb-item.active {
        opacity: 1;
    }
}


.news-dt .news-dt-title {
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--basic-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.news-dt .news-dt-title::after {
    content: '';
    display: block;
    width: 250px;
    height: 2px;
    background-color: #ccc;
    margin-top: 15px;
}


.case .case-img {
    height: 280px;
    position: relative;
    transition: .3s ease;
}


@media (max-width: 992px) {
    .case .case-img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .case .case-img {
        height: 270px;
    }
}

.case .case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
}




.case-dt .title {
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--basic-color);
    margin-bottom: 10px;
}

.case-dt-dc {
    color: #999;
    font-family: 'inter';
    letter-spacing: 2px;
    font-size: 15px;
}

.qa-box,
.qa-title {
    transition: .3s ease;
}

.qa-title {
    padding: 10px;

}

.qa-box:hover {
    cursor: pointer;
}

.qa-answer {
    padding: 15px 10px 5px 10px;
    display: none;
}


.dl-table {
    width: 100%;
    letter-spacing: 1px;
}

.dl-table th,
.dl-table td {
    border: 1px solid #f3f3f3;
    /* 可更動 */
    padding: 10px;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

.dl-table a {
    display: block;
    text-align: center;
    width: 30px;
    margin: 0 auto;
    background-color: #f1f1f1;
    transition: .3s ease;
}

@media (max-width: 576px) {
    .dl-table a {
        margin: inherit;
        margin-left: auto;
    }
}

.dl-table a i {
    font-size: 20px;
}

.dl-table thead.mb {
    display: none;
}

@media (max-width: 576px) {

    .dl-table thead {
        display: none;
    }

    .dl-table thead.mb {
        display: table-header-group;
        background-color: #eee;
    }

    .dl-table tbody {
        border-bottom: 2px solid #999;
    }

    .dl-table td {
        display: block;
        width: 100%;
        text-align: right;
    }

    .dl-table td::before {
        content: attr(data-title);
        float: left;
        color: #999;
    }
}


.main-title {
    letter-spacing: 2px;
    margin-bottom: 20px;
}


.main-list ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

.st0 {
    fill: var(--main-color);
}

.st1 {
    fill: none;
    stroke: var(--main-color);
    stroke-width: 5;
    stroke-miterlimit: 10;
}

.st2 {
    fill: none;
    stroke: var(--main-color);
    stroke-width: 5;
    stroke-miterlimit: 10;
}

/*---- basic setting end-----*/


/*---- form ----*/

.form h3 {
    text-align: center;
    letter-spacing: 3px;
    margin: 20px 0px 10px 0px;
    color: var(--main-color);
    padding-bottom: 20px;
    border-bottom: 2px solid #f3f3f3;
}

.form {
    border: 2px solid #148ec9;
    background-color: #f9f9f950;
    padding: 10px 10px;
    border-radius: 10px;
}

.form-control {
    border: 1px solid #eee;
}

.form-control:focus {
    border: none;
    box-shadow: 0 0 0 2px var(--main-color);
}



input[type=checkbox] {
    width: 15px;
    height: 15px;
    position: relative;
}

input[type=checkbox]::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border: 1px solid #ccc;
}

input[type=checkbox]::after {
    position: absolute;
    top: -5px;
    left: 0px;
    content: '\f00c';
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    color: var(--main-color);
    display: block;
    transform: scale(0);
    transition: .3s ease;
}

input[type=checkbox]:checked:after {
    transform: scale(1);
}

.checkbox label {
    letter-spacing: 2px;
    color: #666;
}

.cdhCaptcha {
    max-width: initial !important;
    text-align: right;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}

label.captcha {
    width: 100%;
    display: block;
    text-align: right;
    border-left: none;
    margin: 20px 0px 20px 0 !important;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: var(--main-color) !important;
    border-left: none !important;
}

.cdhCaptcha img {
    display: block;
    float: right;
    width: 120px;
    order: 2;
    margin-bottom: 0 !important;
}

.cdhCaptcha input {
    order: 1;
    display: block;
    width: 145px;
    text-align: center;
    float: right;
    margin-right: 10px;
    height: 100%;
    box-sizing: border-box;
    letter-spacing: 2px;
    font-size: 17px;
    color: #999;
}

.cdhCaptcha input::placeholder {
    color: #ccc;
}

.form-check>label,
.form-group>label {
    margin: 15px 0 8px 0px;
    letter-spacing: 2px;
    transition: .3s ease;
    padding-left: 10px;
    border-left: 6px solid #ededed;
}

.form-group select {
    letter-spacing: 1.5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('../img/select-icon.svg');
    background-repeat: no-repeat;
    background-position: calc(97%);
    background-size: 15px;
    transition: .3s ease;
}

select::-ms-expand {
    display: none;
}

.form-group {
    letter-spacing: 2px;
    padding-bottom: 10px;
}

.form button {
    float: right;
    background-color: var(--main-color);
    color: #fff;
    transition: .3s ease;
}

.form button:hover {
    color: #fff;
    background-color: #666;
}

/*---- form end ----*/




/* ----------------------------------------------------------------------------------------------------------------------------------------------------------
SAAS Theme t1
header > index > category ( 上選單 ) + sidenav ( 側選單 ) >
ab > pdt > news > case + photo > qa > dl > contact > form
----------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*---- header-t1 ----- */

header.header-t1 {
    height: 75px;
    background: #fff;
}

.header-t1 .fixed-top {
    padding-right: 0px !important;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(199, 199, 199, 0.3);
}

.header-t1 .logo {
    width: 150px;
    height: 75px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
}

.header-t1 .logo img {
    width: 150px;
}

.header-t1 .nav-menu {
    margin: 0;
    padding: 0;
    height: 100%;
}
@media (min-width: 992px) and (max-width: 1200px){
    .header-t1 .logo {
    width: 130px;
}

    .header-t1 .logo img {
    width: 130px;
}
}
@media(min-width: 992px) {
    .header-t1 .nav-menu ul {
        display: flex;
        margin: 0;
        padding: 0;
        height: 100%;
    }
}

.header-t1 .nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    list-style: none;
    height: 75px;
}

.header-t1 .nav-menu a {
    display: block;
    position: relative;
    color: var(--basic-color);
    padding: 0 15px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 900;
}

.header-t1 .nav-menu>ul>li>a {
    display: block;
    position: relative;
    color: var(--basic-color);
    height: 100%;
    padding: 0 8px;
    transition: 0.3s;
    font-size: 16px;
    line-height: 75px;
    font-weight: 900;
    letter-spacing: 0px;
}

.header-t1 .nav-menu a:hover,
.header-t1 .nav-menu .active>a,
.header-t1 .nav-menu li:hover>a {
    background-color: var(--main-color);
    color: #fff;
    text-decoration: none;
}


.header-t1 .nav-menu .drop-down ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    height: auto;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(201, 201, 201, 0.25);
    transition: ease all 0.3s;
    list-style: none;
}


.header-t1 .nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
    background: #fff;
    /* height: 50px; */
}

.header-t1 .nav-menu .drop-down ul a {
    display: block;
    height: 100%;
    width: 100%;
    font-size: 16px;
    line-height: 38px;
    font-weight: 500;
    text-transform: none;
    color: var(--basic-color);
}

.header-t1 .nav-menu .drop-down ul a:hover,
.header-t1 .nav-menu .drop-down ul .active>a,
.header-t1 .nav-menu .drop-down ul li:hover>a {
    color: #fff;
}

.header-t1 .nav-menu .drop-down>a:after {
    content: "\eac8";
    font-family: IcoFont;
    padding-left: 2px;
}

.header-t1 .nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.header-t1 .nav-menu .drop-down .drop-down:hover>ul {
    display: block;
    top: 0;
    left: 100%;
    animation-name: toLeft;
    animation-duration: .5s;
    animation-delay: 0ms;
}

@keyframes toLeft {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0px);
        opacity: 1;
    }
}


.header-t1 .nav-menu .drop-down .drop-down>a:after {
    content: "\eaca";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .header-t1 .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .header-t1 .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }

    .header-t1 .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}

/* 選單hover效果 */
.header-t1 .nav-menu>ul>.drop-down:hover>ul {
    display: block;
    animation-name: header_t1;
    animation-duration: .5s;
    animation-delay: 0ms;
    animation-timing-function: ease;

}


@keyframes header_t1 {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}


/*---- header-t1 end ----- */


/*---- index-t1 end ----- */

.index-ab-t1 img {
    height: 270px;
    object-fit: cover;
}

.index-ab-t1 .ab-box {
    height: 100%;
    background-color: #f9f9f9;
    padding: 30px;
}

.index-ab-t1 .title h3 {
    font-weight: 800;
    font-family: inter;
    letter-spacing: 5px;
    color: var(--basic-color);
}

.index-ab-t1 .title h3:nth-of-type(1) {
    border-bottom: 1px solid var(--basic-color);
}

.index-ab-t1 .content {
    color: var(--basic-color);
    line-height: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.index-ab-t1 .content {
    color: var(--basic-color);
    line-height: 35px;
}

.index-news-t1 {
    position: relative;
}

.index-news-t1 .title {
    position: absolute;
    left: 160px;
}

@media (max-width: 1450px) {
    .index-news-t1 .title {
        position: relative;
        left: 100px;
    }
}

@media (max-width: 768px) {
    .index-news-t1 .title {
        position: relative;
        left: 35px;
    }
}

@media (max-width: 576px) {
    .index-news-t1 .title {
        position: relative;
        left: 15px;
    }
}

.index-news-t1 h3 {
    font-weight: 800;
    font-family: inter;
    letter-spacing: 5px;
    color: var(--basic-color);
    margin-bottom: 20px;
}

.index-news-t1 h3:nth-of-type(1):after {
    display: block;
    width: 200px;
    height: 1px;
    content: '';
    background-color: var(--basic-color);
    margin-top: 20px;
}

.index-news-t1 .swiper-row {
    justify-content: end;
}

.index-news-t1 .news-box {
    padding: 30px;
    box-shadow: 0px 0px 15px hsla(0, 0%, 0%, 0.09);
}

.index-news-t1 .news-box .news-img {
    position: relative;
    height: 220px;
    transition: .3s ease;
}

.index-news-t1 .news-box:hover .news-img {
    opacity: .8;
}

.index-news-t1 .news-box .news-img .date {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    padding: 10px;
    font-size: 14px;
    color: var(--main-color);
    letter-spacing: 3px;
    font-weight: 700;
    transition: .3s ease;
}

.index-news-t1 .news-box:hover .news-img .date {
    color: #fff;
    background-color: var(--main-color);
    transform: scale(.9);
}

.index-news-t1 .news-box .news-img img {
    object-fit: cover;
}

.index-news-t1 .news-box .news-t {
    margin-top: 20px;
}

.index-news-t1 .news-box .news-t h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--basic-color);
    transition: .3s ease;
}

.index-news-t1 .news-box:hover .news-t h4 {
    color: var(--main-color);
}

.index-news-t1 .news-box .news-t span {
    font-size: 16px;
    color: #999;
}


.index-pdt-t1 .title h3 {
    font-weight: 800;
    font-family: inter;
    letter-spacing: 5px;
    color: var(--main-color);
    margin-bottom: 20px;
}

.index-pdt-t1 .title h3:nth-of-type(1)::after {
    display: block;
    width: 200px;
    height: 2px;
    content: '';
    margin: 20px auto 0px auto;
    background-color: var(--main-color);
}

.index-pdt-t1 .pdt-box {
    box-shadow: 0px 0px 15px hsla(0, 0%, 0%, 0.05);

}

.index-pdt-t1 .pdt-box .pdt-img {
    height: 300px;
    transition: .3s ease;
}

.index-pdt-t1 .pdt-box:hover .pdt-img {
    opacity: .8;
}

.index-pdt-t1 .pdt-box .pdt-t h4 {
    padding: 0 20px;
    height: 80px;
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 60px;
    color: var(--basic-color);
    transition: .3s ease;
}

.index-pdt-t1 .pdt-box:hover .pdt-t h4 {
    color: var(--main-color);
}

.index-pdt-t1 .pdt-box .pdt-t h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--main-color);
    margin: 0px auto 0px auto;
    transition: .5s ease .1s;
}

.index-pdt-t1 .pdt-box:hover .pdt-t h4::after {
    width: 80px;
}

/*---- index-t1 end ----- */


/* ----- category-t1 ---- */

.category-t1 li {
    background-color: #f9f9f9;
    transition: .3s ease;
}

.category-t1 li.active,
.category-t1 li:hover {
    background-color: var(--main-color);
}

.category-t1 li a {
    color: #999;
    transition: .3s ease;
}

.category-t1 li.active a,
.category-t1 li:hover a {
    color: #fff;
}

/* ----- category-t1 end ---- */


/* ----- sidenav-t1 ---- */
.sidenav-t1>li>a {
    background-color: #f3f3f3;
    color: var(--basic-color);
}

.sidenav-t1>li:hover>a,
.sidenav-t1>li.active>a {
    background-color: var(--main-color);
    color: #fff;
}


.sidenav-t1>li>a::after {
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    content: "\f054";
    float: right;
    margin-right: 15px;
    transition: .3s ease;
}

.sidenav-t1>li:hover>a::after,
.sidenav-t1>li.active>a::after {
    transform: rotate(90deg);
}

.sidenav-t1.unicon>li:hover>a::after,
.sidenav-t1.unicon>li.active>a::after {
    transform: rotate(0deg) translateX(5px);
}

.sidenav-t1>li ul li a {
    /*border: 1px solid #eee;*/
    letter-spacing: 2px;
    color: #242424;
}

.sidenav-t1>li ul li:hover a,
.sidenav-t1>li ul li.active a {
    border-bottom: 1px solid var(--green-color);
    color: var(--green-color);
}

.sidenav-t1>li ul li a::before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    content: "\f054";
    margin-right: 5px;
    color: var(--green-color);
    transition: .3s ease;
}

.sidenav-t1>li ul li:hover a::before,
.sidenav-t1>li ul li.active a::before {
    color: var(--green-color);
}

/* ----- sidenav-t1 end ---- */




/* ----case-t1 ( photo-t1 ) & case-dt-t1 ----*/

.case-t1 .case-img::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    border: 10px solid var(--green-color);
    opacity: 0;
    transition: .3s ease;
}

.case-t1 .case-box:hover .case-img::after {
    opacity: 0.6;
}

.case-t1 .case-img::before {
    content: 'VIEW';
    text-align: center;
    display: block;
    position: absolute;
    width: 50%;
    line-height: 32px;
    top: 47%;
    left: 25%;
    font-size: 13px;
    color: #fff;
    letter-spacing: 5px;
    background-color: var(--green-color);
    transition: .4s ease .2s;
    transform: scaleY(0);
}

.case-t1 .case-box:hover .case-img::before {
    transform: scaleY(1);
}



.case-t1 .case-ct {
    margin-top: 5px;
}

.case-t1 .case-ct .title {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 28px;
    color: var(--basic-color);
    border-bottom: 2px solid #ccc;
    transition: .3s ease;
}

.case-t1 .case-box:hover .case-ct .title {
    color: var(--main-color);
}

.case-t1 .case-dc {
    font-size: 15px;
    color: #999;
    letter-spacing: 2px;
}

.case-t1 .views {
    float: right;
}

/* ----case-t1 ( photo-t1 ) & case-dt-t1 end---- */


/* ---- qa ---- */

.qa-t1 .qa-box {
    margin-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.qa-t1 h4 {
    font-size: 20px;
    letter-spacing: 3px;
    line-height: 30px;
    font-weight: 700;
    color: #555;
    transition: .3s ease;
}

.qa-t1 h4::before {
    font-family: "inter";
    font-weight: 300;
    content: "\51";
    margin-top: -5px;
}

.qa-t1 .qa-title {
    background-color: transparent;
}

.qa-t1 .qa-box:hover .qa-title,
.qa-t1 .qa-box.active .qa-title {
    background-color: #f9f9f9;
}

.qa-t1 .qa-box:hover .qa-title h4,
.qa-t1 .qa-box.active .qa-title h4 {
    color: var(--main-color);

}

.qa-t1 .qa-answer {
    line-height: 30px;
    color: #666;
}


/* ---- qa-t1 end ---- */



/* ---- dl-t1 ---- */

.dl-t1 .dl-table thead {
    background-color: var(--main-color);
    color: #fff;
}


/* ---- dl-t1 end ---- */

/* ---- contact-t1 ---- */


.contact-t1 .contact-title h3 {
    color: var(--main-color);
    letter-spacing: 2px;
    padding-bottom: 6px;
    position: relative;
    border-bottom: 3px solid var(--main-color);
    margin-bottom: -5px;
}




.contact-t1 .contact-info {
    display: flex;
    flex-wrap: wrap;
    height: 300px;
}

.contact-t1 .contact-icon {
    width: 100%;
    margin: 5px 0px;
    background-color: var(--main-color);
    padding: 10px 20px;
}

.contact-t1 .contact-icon .info-title {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    font-size: 20px;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 500;
}

@media (max-width: 576px) {
    .contact-t1 .contact-icon .info-title {
        font-size: 16px;
    }

}

.contact-t1 .contact-icon i {
    color: #fff;
    margin-right: 10px;
}

.contact-t1 .contact-icon a {
    color: #fff;
}

.contact-t1 .map iframe {
    width: 100%;
    border: none;
    height: 300px;
}

.contact-t1 .map {
    position: relative;
    height: 100%
}


/* ---- contact-t1 end---- */

/* ---- main-t1 ---- */
.main-t1 .main-title h3 {
    padding-left: 10px;
    font-size: 22px;
    border-left: 10px solid var(--main-color);
}

.main-t1 .main-list ul li a {
    color: #666;
    display: block;
    padding: 8px 0px;
    text-align: center;
    background-color: #eee;
    transition: .3s ease;
}

.main-t1 .main-list ul li a:hover {
    background-color: var(--main-color);
    color: #fff;
}

/* ---- main-t1 end ---- */




/* ---- footer-t1 ---- */

.footer-t1 {
    padding-bottom: 0;
    background-color: #fafafa;
}

.footer-t1 .f-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.footer-t1 .f-img img {
    width: 200px;
}

.footer-t1 .f-name {
    letter-spacing: 2px;
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .footer-t1 .f-name {
        text-align: center;
    }
}

.footer-t1 .f-wrap {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

.footer-t1 .f-wrap .f-info {
    width: 50%;
    color: var(--basic-color);
    letter-spacing: 2px;
}

@media (max-width: 992px) {
    .footer-t1 .f-wrap .f-info {
        margin-bottom: 10px;
    }
}

@media(max-width: 576px) {

    .footer-t1 .f-wrap .f-info {
        width: 100%;
    }
    .footer-t1 .f-img img {
    width: 150px;
    margin-bottom: 15px;
}
}

.footer-t1 .f-wrap .f-info span:nth-of-type(1) {
    color: var(--main-color);
    display: inline-block;
    border-left: 5px solid #aabe51;
    padding-left: 10px;
    font-weight: 700;
}



.footer-t1 .copyright {
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff;
    background-color: var(--main-color);
    padding: 5px 0px;
    text-align: center;
}




/* ---- footer-t1 end ---- */



/* ----------------------------------------------------------------------------------------------------------------------------------------------------------
SAAS Theme t2
header > index > category ( 上選單 ) + sidenav ( 側選單 ) >
ab > pdt > news > case + photo > qa > dl > contact > form
----------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*---- header-t2 ----- */

header.header-t2 {
    height: 160px;
    background: #fff;
}

@media (max-width: 992px) {
    header.header-t2 {
        height: 80px;
    }

}

.header-t2 .fixed-top {
    padding-right: 0px !important;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
}

.header-t2 .logo {
    width: 200px;
    height: 80px;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
}

.header-t2 .logo img {
    width: 180px;
}

.header-t2 .nav-menu {
    margin: 0;
    padding: 0;
    height: 100%;
}

@media(min-width: 992px) {
    .header-t2 .nav-menu ul {
        display: flex;
        margin: 0;
        padding: 0;
        height: 100%;
        justify-content: center;
    }
}

.header-t2 .nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    list-style: none;
    height: 80px;
}

.header-t2 .nav-menu a {
    display: block;
    position: relative;
    color: var(--basic-color);
    padding: 0 15px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
}

.header-t2 .nav-menu>ul>li>a {
    display: block;
    position: relative;
    color: var(--basic-color);
    height: 100%;
    padding: 0 15px;
    transition: 0.3s;
    font-size: 16px;
    line-height: 80px;
    font-weight: 500;
}

.header-t2 .nav-menu>ul>li>a::before {
    position: absolute;
    content: '';
    display: block;
    top: 18%;
    left: 5%;
    width: 90%;
    height: 60%;
    border-radius: 10px;
    border: 1px solid var(--main-color);
    transition: .4s ease;
    transform: scaleY(0);
}

.header-t2 .nav-menu>ul>li.active>a::before,
.header-t2 .nav-menu>ul>li:hover>a::before {
    transform: scaleY(1);
}

.header-t2 .nav-menu a:hover,
.header-t2 .nav-menu .active>a,
.header-t2 .nav-menu li:hover>a {
    color: var(--main-color);
    text-decoration: none;
}


.header-t2 .nav-menu .drop-down ul {
    display: none;
    border-radius: 15px;
    position: absolute;
    left: 0px;
    top: 90%;
    height: auto;
    z-index: 99;
    background-color: #fff;
    box-shadow: 0px 0px 30px rgba(201, 201, 201, 0.25);
    transition: ease all 0.3s;
    list-style: none;
}


.header-t2 .nav-menu .drop-down li {
    min-width: 130px;
    text-align: center;
    position: relative;
}

.header-t2 .nav-menu .drop-down ul a {
    display: block;
    height: 100%;
    width: 100%;
    font-size: 16px;
    line-height: 50px;
    font-weight: 500;
    text-transform: none;
    color: var(--basic-color);
}

.header-t2 .nav-menu .drop-down ul a:hover,
.header-t2 .nav-menu .drop-down ul .active>a,
.header-t2 .nav-menu .drop-down ul li:hover>a {
    color: var(--main-color);
}

.header-t2 .nav-menu .drop-down>a:after {
    content: "\eac8";
    font-family: IcoFont;
    padding-left: 5px;
    font-weight: 700;
}

.header-t2 .nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.header-t2 .nav-menu .drop-down .drop-down:hover>ul {
    display: block;
    top: 0;
    left: 100%;
    animation-name: toLeft;
    animation-duration: .5s;
    animation-delay: 0ms;
}

@keyframes toLeft {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0px);
        opacity: 1;
    }
}


.header-t2 .nav-menu .drop-down .drop-down>a:after {
    content: "\eaca";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .header-t2 .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .header-t2 .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }

    .header-t2 .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}

/* 選單hover效果 */
.header-t2 .nav-menu>ul>.drop-down:hover>ul {
    display: block;
    animation-name: header_t2;
    animation-duration: .5s;
    animation-delay: 0ms;
    animation-timing-function: ease;

}


@keyframes header_t2 {
    from {
        transform: scaleY(0);
        opacity: 0;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }
}


/*---- header-t2 end ----- */


/*---- index-t2 end ----- */

.index-ab-t2 .ab-box {
    padding: 50px 20px;
    border: 1px solid var(--main-color);
    border-radius: 0 25px 0px 25px;
}

@media (max-width: 992px) {
    .index-ab-t2 .ab-box {
        padding: 30px 20px 50px 20px;
    }
}

.index-ab-t2 .ab-box h2 {
    text-align: center;
    letter-spacing: 3px;
    font-weight: 900;
    font-size: 28px;
    margin: 15px 0px;
    color: var(--main-color);
}

.index-ab-t2 .ab-ct {
    font-size: 15px;
    line-height: 35px;
    color: var(--basic-color);
}

.index-ab-t2 a.t2-button1 {
    transform: translate(-50px, -50px);
}

.index-ab-t2 .ab-img {
    height: 200px;
    margin-bottom: 15px;
}

.index-ab-t2 .ab-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-news-t2 .news-m {
    background-color: #f9f9f9;
    padding: 40px;
}

.index-news-t2 .title {
    width: 200px;
    text-align: center;
    padding: 50px 20px;
    border-radius: 0 25px 0 25px;
    border: 1px solid var(--main-color);
    position: relative;
    background-color: #fff;
    float: right;
    transform: translate(0px, 70px);
    z-index: 1;
}

.index-news-t2 .title h2 {
    font-size: 25px;
    margin: 10px;
    font-weight: 900;
    color: var(--main-color);
    letter-spacing: 3px;
    transition: .3s ease;
}


.index-news-t2 .title::after {
    position: absolute;
    left: 0;
    bottom: -80px;
    content: '';
    display: block;
    width: 100%;
    height: 15px;
    background-color: var(--main-color);
}

@media (max-width: 1200px) {
    .index-news-t2 .title {
        transform: translate(20px, 70px);
    }
}

@media (max-width: 992px) {
    .index-news-t2 .title {
        padding: 20px;
        transform: translate(-20px, 20px);
    }

    .index-news-t2 .title::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .index-news-t2 .title {
        width: 150px;
        padding: 10px;
        transform: translate(-20px, 20px);
    }

    .index-news-t2 .title h2 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .index-news-t2 .title {
        float: left;
        transform: translate(20px, 20px);
    }
}

@media (max-width: 576px) {
    .index-news-t2 .news-box {
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

}

.index-news-t2 .time {
    min-height: 80px;
    min-width: 80px;
    width: 80px;
    height: 80px;
    line-height: 40px;
    font-size: 22px;
    font-family: 'inter';
    letter-spacing: 5px;
    color: var(--main-color);
    background-color: #fff;
    text-align: center;
    display: block;
    transition: .3s ease;
}

.index-news-t2 .news-box:hover .time {
    background-color: var(--main-color);
    color: #fff;
}



.index-news-t2 .news-img {
    display: block;
    width: 80px;
    height: 80px;
    min-height: 80px;
    min-width: 80px;
}

@media (max-width: 576px) {
    .index-news-t2 .news-m {
        padding: 40px 20px;
    }

    .index-news-t2 .news-img {
        display: none;
    }
}

@media (max-width: 576px) {
    .index-news-t2 .time {
        min-height: 50px;
        min-width: 50px;
        width: 50px;
        height: 50px;
        line-height: 25px;
        font-size: 15px;
    }
}

.index-news-t2 .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-news-t2 .news-ct h3 {
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--basic-color);
    margin-bottom: 10px;
    transition: .3s ease;
}

.index-news-t2 .news-box:hover .news-ct h3 {
    color: var(--main-color);
}

.index-news-t2 .news-ct p {
    color: #666;
}

.index-pdt-t2 .title {
    width: 200px;
    min-width: 200px;
    border: 1px solid var(--main-color);
    border-radius: 0px 25px 0px 25px;
    text-align: center;
    padding: 50px 0px;
}

.index-pdt-t2 .title h2 {
    color: var(--main-color);
    font-size: 25px;
    font-weight: 900;
    margin: 10px 0px;
}

@media (max-width: 992px) {
    .index-pdt-t2 .title {
        padding: 10px 0;
    }

    .index-pdt-t2 .title h2 {
        font-size: 20px;
    }
}

.index-pdt-t2 .t2-button2 {
    width: 200px;
}

.index-pdt-t2 .index-pdt-t2-swiper {
    padding-bottom: 25px;
}

.index-pdt-t2 .pdt-box {
    padding-bottom: 20px;
    border-radius: 0 0 15px 15px;

}

.index-pdt-t2 .pdt-img {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    height: 220px;
    transition: .3s ease;
    position: relative;
}

.index-pdt-t2 .pdt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-pdt-t2 .pdt-img::after {
    position: absolute;
    line-height: 220px;
    font-size: 20px;
    font-weight: 900;
    content: "VIEW";
    letter-spacing: 5px;
    color: #fff;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    top: 0;
    transform: scaleY(0);
    transition: .4s ease .1s;
    opacity: 0;
}

.index-pdt-t2 .pdt-box:hover .pdt-img::after {
    transform: scaleY(1);
    opacity: .7;
}

.index-pdt-t2 .pdt-t {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-radius: 0 0 15px 15px;
}

.index-pdt-t2 .pdt-t h4 {
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    transition: .3s ease;
    padding: 0 15px;
    color: var(--basic-color);
    transition: .3s ease;
}

.index-pdt-t2 .pdt-box:hover .pdt-t h4 {
    color: var(--main-color);
}

.index-pdt-t2 .swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: -5px;
}

.swiper-pagination-bullet-active {
    background-color: var(--main-color);
}

/*---- index-t2 end ----- */


/* ----- category-t2 ---- */

.category-t2 li {
    border: 1.5px solid #eee;
    border-radius: 0 15px 0 15px;
}

@media (max-width: 992px) {
    .category-t2 li {
        margin-bottom: 5px;
    }
}

.category-t2 li a {
    color: var(--basic-color);
}

.category-t2 li.active a,
.category-t2 li:hover a {
    color: var(--main-color);
}

.category-t2 li.active,
.category-t2 li:hover {
    border-color: var(--main-color);
}

/* ----- category-t2 end ---- */


/* ----- sidenav-t2 ---- */
.sidenav-t2>li>a {
    background-color: #fff;
    color: #999;
    border-radius: 0 15px 0 15px;
    border: 1px solid #eee;
}

.sidenav-t2>li:hover>a,
.sidenav-t2>li.active>a {
    border-color: var(--main-color);
    color: var(--main-color);
}


.sidenav-t2>li>a::after {
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    content: "\f054";
    float: right;
    margin-right: 15px;
    transition: .3s ease;
}

.sidenav-t2>li:hover>a::after,
.sidenav-t2>li.active>a::after {
    transform: rotate(90deg);
}

.sidenav-t2.unicon>li:hover>a::after,
.sidenav-t2.unicon>li.active>a::after {
    transform: rotate(0deg) translateX(5px);
}

.sidenav-t2>li ul li {
    margin-top: 5px;
    margin-left: 10px;
}

.sidenav-t2>li ul li a {
    border: 1px solid #eee;
    border-top: none;
    border-right: none;
    border-radius: 0 0 0 15px;
    letter-spacing: 2px;
    color: #999;
    padding: 10px 0px 10px 30px;
    position: relative;
}

.sidenav-t2>li ul li a::after {
    position: absolute;
    display: block;
    content: '';
    width: 0%;
    height: 0%;
    opacity: 0;
    border: 1px solid var(--main-color);
    border-top: none;
    border-right: none;
    border-radius: 0 0 0 15px;
    top: 0;
    left: 0;
    transition: .3s ease .1s;
}

.sidenav-t2>li ul li:hover a,
.sidenav-t2>li ul li.active a {
    color: var(--main-color);
}

.sidenav-t2>li ul li:hover a::after,
.sidenav-t2>li ul li.active a::after {
    animation: sidenav-t2 .5s ease .1s 1 both;
}

@keyframes sidenav-t2 {
    0% {
        opacity: 0;
        width: 0;
        height: 0;
    }

    50% {
        opacity: .5;
        width: 0;
        height: 100%;
    }

    100% {
        opacity: 1;
        width: 100%;
        height: 100%;
    }
}


/* ----- sidenav-t2 end ---- */


/* ---- pdt-t2 ----- */

.pdt-t2 .pdt-box {
    border-radius: 0 0 15px 15px;
}

.pdt-t2 .pdt-img {
    height: 250px;
    overflow: hidden;
    transition: .3s ease;
    position: relative;
}

.pdt-t2 .pdt-img::after {
    font-family: 'Font Awesome 6 Pro';
    content: '\f002';
    text-align: center;
    line-height: 40px;
    font-size: 25px;
    color: #fff;
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #ffffff9f;
    bottom: 5px;
    border-radius: 15px;
    right: 5px;
    transition: .5s ease 0s;
}

.pdt-t2 .pdt-box:hover .pdt-img::after {
    font-size: 55px;
    color: var(--main-color);
    width: 100%;
    height: 100%;
    transform: scale(.9);
    line-height: 240px;
    background-color: #fff;
    opacity: .8;
    bottom: 0px;
    right: 0px;
    transition: .4s ease .1s;
}



.pdt-t2 .pdt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdt-t2 .pdt-d {
    border-radius: 0 0 15px 15px;
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}

.pdt-t2 .pdt-d h3 {
    padding: 10px;
    text-align: center;
    font-size: 16px;
    line-height: 38px;
    transition: .3s ease;
    color: var(--basic-color);
}

.pdt-t2 .pdt-box:hover .pdt-d h3 {
    color: var(--main-color);
}


/* ---- pdt-t2 end ----- */




/* ---- news-t2 & news-de-t1  ---- */

.news-t2 .news-box {
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.news-t2 .time {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    text-align: center;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 15px 0 15px 0;
    width: 130px;
    transition: .3s ease;
}

.news-t2 .news-box:hover .time {
    color: #fff;
    background: var(--main-color);
}

.news-t2 .news-t h3 {
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: var(--basic-color);
    font-weight: 900;
    transition: .3s ease;
}

.news-t2 .news-box:hover .news-t h3 {
    color: var(--main-color);
}

.news-t2 .news-ct {
    color: #999;
}

.news-t2 .news-m {
    width: calc(100% - 120px);
    margin-right: 15px;
}

.news-t2 .more {
    color: #999;
    text-align: center;
    min-width: 100px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #ccc;
    border-radius: 0 15px 15px 0;
    transition: .5s ease .15s;
}


.news-t2 .news-box:hover .more {
    color: var(--main-color);
    transform: translateX(20px);
    border-color: var(--main-color);
}

@media (max-width: 576px) {
    .news-t2 .news-m {
        width: 100%;
        margin-right: 0px;
    }

    .news-t2 .more {
        display: none;
    }
}


.news-dt-t2 .time {
    display: block;
    margin-bottom: 10px;
    font-family: 'inter';
    font-size: 14px;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    text-align: center;
    padding: 5px;
    border-radius: 15px 0 15px 0;
    width: 130px;
    transition: .3s ease;
}

/* ---- news-t2 & news-de-t2 end ---- */


/* ----case-t2 ( photo-t2 ) & case-dt-t2 ----*/


.case-t2 .case-box {
    border-radius: 0 0 15px 15px;
    transition: .3s ease;
}

.case-t2 .case-box:hover {
    border-color: var(--main-color);
}

.case-t2 .case-img::after {
    font-family: 'Font Awesome 6 Pro';
    content: '\f002';
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: var(--main-color);
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    bottom: 10px;
    border-radius: 15px;
    right: 10px;
    transition: .3s ease 0s;
}

.case-t2 .case-box:hover .case-img::after {
    background-color: var(--main-color);
    color: #fff;
}

.case-t2 .case-box:hover .case-img img {
    opacity: .6;
}

.case-t2 .case-ct {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-radius: 0 0 15px 15px;
}

.case-t2 .case-ct .title {
    font-size: 18px;
    letter-spacing: 2px;
    text-align: center;
    line-height: 30px;
    color: var(--basic-color);
    transition: .3s ease;
}

.case-t2 .case-box:hover .case-ct .title {
    color: var(--main-color);
}

.case-t2 .case-dc {
    text-align: center;
    font-size: 15px;
    color: #999;
    letter-spacing: 2px;
}

.case-dt-t2 .gallery-item img {
    overflow: hidden;
    border-radius: 0 5px 0 5px;
}

/* ----case-t2 ( photo-t2 ) & case-dt-t2 end---- */


/* ---- qa-t2 ---- */

.qa-t2 .qa-box {
    border: 1px solid #eee;
    padding: 10px 20px;
    border-radius: 10px;
    transition: .3s ease;
    margin-bottom: 10px;
}

.qa-t2 .qa-box:hover,
.qa-t2 .qa-box.active {
    border-color: var(--main-color);
}

.qa-t2 .qa-box .qa-title {
    letter-spacing: 2px;
    color: #666;
    padding: 10px 10px;
    transition: .3s ease;
}

.qa-t2 .qa-box .qa-title h4 {
    font-size: 20px;
}

.qa-t2 .qa-box:hover .qa-title,
.qa-t2 .qa-box.active .qa-title {
    color: var(--main-color);
}


.qa-t2 .qa-box .qa-title h4::before {
    content: 'Q';
    font-family: 'inter';
}

.qa-t2 .qa-box .qa-answer {
    background-color: #fff;
    padding: 10px 10px;
    border-radius: 10px;
    letter-spacing: 1px;
}

.qa-t2 .qa-box .qa-icon {
    margin-top: 10px;
    color: #666;
    font-size: 20px;
    font-weight: 900;
    transition: .3s ease;
    text-align: right;
}

.qa-t2 .qa-box .qa-icon i {
    font-weight: 300;
    transition: .3s ease;
}

.qa-t2 .qa-box:hover .qa-icon {
    color: var(--main-color);
}

.qa-t2 .qa-box.active .qa-icon i {
    color: var(--main-color);
    transform: rotate(180deg);
}

/* ---- qa-t2 end ---- */


/* ---- dl-t2 ---- */

.dl-t2 .dl-table thead {
    color: var(--main-color);
}

.dl-t2 .dl-table thead th {
    border: none;
    border-bottom: 2px solid var(--main-color);
}

@media (max-width: 576px) {
    .dl-t2 .dl-table thead.mb {
        background-color: #fff;
    }
}

.dl-t2 .dl-table tbody tr {
    transition: .3s ease;
}

.dl-t2 .dl-table tbody tr:hover {
    background-color: #f9f9f9;
}

/* ---- dl-t2 end ---- */

/* ---- contact-t2 ---- */

.contact-t2 .contact-title h3 {
    letter-spacing: 2px;
    font-size: 30px;
    font-weight: 400;
    color: var(--main-color);
    text-align: center;
    padding-bottom: 5px;
}

.contact-t2 .map iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    border: none;
    outline-offset: 5px;
    outline: 1px solid #eee;
}

.contact-t2 .contact-info {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.contact-t2 .contact-icon {
    width: 25%;
    display: flex;
    flex-wrap: wrap;
    margin: 0px 5px;
}

@media (max-width: 992px) {
    .contact-t2 .contact-info {
        flex-wrap: wrap;
    }

    .contact-t2 .contact-icon {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .contact-t2 .contact-info {
        flex-wrap: wrap;
    }

    .contact-t2 .contact-icon {
        width: 100%;
    }
}

.contact-t2 .info-title {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 70px;
    padding: 20px 0px;
    border-radius: 15px;
    color: var(--main-color);
    background-color: #f8f8f8;
    transition: .3s ease;
}

.contact-t2 .contact-icon:hover .info-title {
    background-color: var(--main-color);
    color: #fff;
}


.contact-t2 .info-content {
    display: block;
    width: 100%;
    padding: 10px 0px;
    text-align: center;
    letter-spacing: 1px;
    color: var(--basic-color);
}

.contact-t2 .info-content a {
    color: var(--basic-color);
}

/* ---- contact-t2 end---- */



/* ---- main-t2 ---- */

.main-t2 .main-title {
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.main-t2 .main-title h3 {
    color: var(--main-color);
}


.main-t2 .main-list ul li a {
    font-size: 16px;
    padding: 10px 0px;
    border: 1px solid #eee;
    background-color: #fff;
    color: var(--basic-color);
    text-align: center;
    border-radius: 15px 0 15px 0;
}

.main-t2 .main-list ul li a:hover {
    color: var(--main-color);
    border-color: var(--main-color)
}



/* ---- main-t2 end ---- */


/* ---- footer-t2 ---- */

.footer-t2 {
    border-top: 5px solid var(--main-color);
    border-radius: 10px 10px 0 0;
}

.footer-t2 .f-img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-t2 .f-img img {
    width: 220px;
}


@media (max-width: 992px) {
    .footer-t2 .f-img {
        margin: 0 auto;
    }
}

.footer-t2 .f-icon {
    display: flex;
    align-items: flex-start;
    margin: 5px 0px;
}

.footer-t2 .f-icon img {
    width: 30px;
    margin-right: 10px;
}

.footer-t2 .f-icon .f-info {
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--basic-color);
    font-family: 'inter';
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.footer-t2 .f-icon a {
    word-break: break-all;
}

.footer-t2 .f-link-t {
    font-size: 16px;
    color: var(--main-color);
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    white-space: nowrap;
}

.footer-t2 .f-link {
    font-size: 15px;
    white-space: nowrap;
    display: inline-block;
    color: var(--basic-color);
}

.footer-t2 .copyright {
    margin-top: 5px;
    font-size: 12px;
    color: #ccc;
}

.f-svg {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.st0 {
    fill: var(--main-color);
}

.st1 {
    fill: none;
    stroke: var(--main-color);
    stroke-width: 5;
    stroke-miterlimit: 10;
}

.st2 {
    fill: none;
    stroke: var(--main-color);
    stroke-width: 5;
    stroke-miterlimit: 10;
}

/* ---- footer-t2 end ---- */






/* ----------------------------------------------------------------------------------------------------------------------------------------------------------
SAAS Theme t3
header > index > category ( 上選單 ) + sidenav ( 側選單 ) >
ab > pdt > news > case + photo > qa > dl > contact > form
----------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*---- header-t3 ----- */

header.header-t3 {
    height: 80px;
    background: #fff;
    position: absolute;
}

.header-t3 .fixed-top {
    transition: .3s ease;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding-right: 0px !important;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
}

.header-t3 .logo {
    width: 180px;
    height: 80px;
    display: inline-flex;
    margin-right: auto;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
}

.header-t3 .logo img {
    width: 180px;
}

.header-t3 .nav-menu {
    margin: 0;
    padding: 0;
    height: 100%;
}

@media(min-width: 992px) {
    .header-t3 .nav-menu ul {
        display: flex;
        margin: 0;
        padding: 0;
        height: 100%;
        justify-content: center;
    }
}

.header-t3 .nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    list-style: none;
    height: 80px;
}

.header-t3 .nav-menu a {
    display: block;
    position: relative;
    color: var(--basic-color);
    padding: 0 15px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
}

.header-t3 .nav-menu>ul>li>a {
    display: block;
    position: relative;
    color: var(--basic-color);
    height: 100%;
    padding: 0 10px;
    transition: 0.3s;
    font-size: 16px;
    line-height: 80px;
    font-weight: 500;
}

.header-t3 .nav-menu>ul>li {
    transition: .3s ease;
}

.header-t3 .nav-menu>ul>li:hover,
.header-t3 .nav-menu>ul>li.active {
    background-color: rgba(255, 255, 255, .7);
}

.header-t3 .nav-menu a:hover,
.header-t3 .nav-menu .active>a,
.header-t3 .nav-menu li:hover>a {
    color: var(--main-color);
    text-decoration: none;
}


.header-t3 .nav-menu .drop-down ul {
    display: none;
    position: absolute;
    left: 0px;
    top: 100%;
    height: auto;
    z-index: 99;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0px 18px 20px rgba(0, 0, 0, 0.025);
    transition: ease all 0.3s;
    list-style: none;
}


.header-t3 .nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.header-t3 .nav-menu .drop-down ul a {
    display: block;
    height: 100%;
    width: 100%;
    font-size: 16px;
    line-height: 50px;
    font-weight: 500;
    text-transform: none;
    transition: .3s ease;
    color: var(--basic-color);
}

.header-t3 .nav-menu .drop-down ul li {
    transition: .3s ease;
}

.header-t3 .nav-menu .drop-down ul li:hover {
    background-color: rgba(255, 255, 255, 1);
}

.header-t3 .nav-menu .drop-down ul .active>a,
.header-t3 .nav-menu .drop-down ul li:hover>a {
    color: var(--main-color) !important;
}

.header-t3 .nav-menu .drop-down>a:after {
    content: "\eac8";
    font-family: IcoFont;
    padding-left: 5px;
    font-weight: 700;
}

.header-t3 .nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.header-t3 .nav-menu .drop-down .drop-down:hover>ul {
    display: block;
    top: 0;
    left: 100%;
    animation-name: toLeft;
    animation-duration: .5s;
    animation-delay: 0ms;
}

@keyframes toLeft {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0px);
        opacity: 1;
    }
}


.header-t3 .nav-menu .drop-down .drop-down>a:after {
    content: "\eaca";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .header-t3 .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .header-t3 .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }

    .header-t3 .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}

/* 選單hover效果 */
.header-t3 .nav-menu>ul>.drop-down:hover>ul {
    display: block;
    animation-name: header_t3;
    animation-duration: .5s;
    animation-delay: 0ms;
    animation-timing-function: ease;

}


@keyframes header_t3 {
    from {
        transform: rotateX(80deg);
        opacity: 0;
    }

    to {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

.carousel-t3 .carousel-item img {
    min-height: 880px;
}

@media (max-width: 992px) {

    .carousel-t3 .carousel-item img {
        min-height: 430px;
    }

    .carousel-t3 .carousel-caption {
        top: 37%;
    }
}

@media (max-width: 576px) {
    .carousel-t3 .carousel-item img {
        min-height: 300px;
    }

    .carousel-t3 .carousel-caption {
        top: 43%;
    }
}

/* 記得做內頁banner rwd */

/*---- header-t3 end ----- */


/*---- index-t3 ----- */



.index-ab-t3 .ab-box {
    background-image: url('../img/ab3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 30px 40px;
}

.index-ab-t3 .ab-box::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    background: rgba(0, 0, 0, 0.2);
}


.index-ab-t3 .ab-box>.row {
    z-index: 10;
}

.index-ab-t3 .title h2 {
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 5px;
    font-weight: 900;
    font-size: 52px;
    text-align: center;
    margin: 20px 0px;
}

@media (max-width: 992px) {
    .index-ab-t3 .title h2 {
        font-size: 35px;
    }
}

.index-ab-t3 .ab-text {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 10px 50px;
    border-radius: 5px;
    line-height: 40px;
    color: var(--basic-color);
    font-size: 15px;
    -webkit-line-clamp: 8;
}


@media (max-width: 576px) {
    .index-ab-t3 .ab-box {
        padding: 20px;
    }

    .index-ab-t3 .ab-text {
        padding: 15px;
    }
}

.index-ab-t3 a {
    margin: 0;
}

.index-news-t3 .title {
    background-color: var(--main-color);
    width: 150px;
    height: 80px;
    position: relative;
}

.index-news-t3 .title::after {
    position: absolute;
    top: 20px;
    left: 20px;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    border: 3px solid var(--main-color);
    border-top: none;
    border-left: none;
}

@media (max-width: 768px) {
    .index-news-t3 .title {
        margin: 0 auto;
    }
}

.index-news-t3 .title h2 {
    position: absolute;
    bottom: 5px;
    right: -5px;
    z-index: 2;
    color: var(--main-color);
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 5px;
}

.index-news-t3 .news-box {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
    .index-news-t3 .news-box {
        flex-wrap: wrap;
    }
}


.index-news-t3 .time {
    color: #fff;
    text-align: center;
    width: 200px;
    font-size: 20px;
    line-height: 77px;
    border-radius: 5px;
    font-family: 'inter';
    background-color: var(--basic-color);
    transition: .3s ease;
}

.index-news-t3 .news-box:hover .time {
    background-color: var(--main-color);
}

@media (max-width: 768px) {
    .index-news-t3 .time {
        width: 80px;
        line-height: 40px;
        font-size: 14px;
    }
}

.index-news-t3 .news-ct {
    margin: 2px 10px;
}

@media (max-width: 768px) {
    .index-news-t3 .news-ct {
        margin: 10px 0px;
    }
}

.index-news-t3 .news-ct h4 {
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--basic-color);
    font-weight: 900;
    margin-bottom: 10px;
    transition: .3s ease;
}

.index-news-t3 .news-box:hover .news-ct h4 {
    color: var(--main-color);
}

.index-news-t3 .news-ct p {
    font-size: 15px;
    color: #666;
}

.index-news-t3 .more {
    display: flex;
    align-items: center;
    color: #ccc;
    transition: .3s ease, 1s;
}

@media (max-width: 768px) {
    .index-news-t3 .more {
        width: 100%;
        justify-content: end;
    }
}

.index-news-t3 .news-box:hover .more {
    transform: translateX(10px);
    color: var(--main-color);
}

.index-pdt-t3 .title {
    height: 20px;
    padding-top: 30px;
    text-align: right;
}

.index-pdt-t3 .title h2 {
    font-size: 25px;
    color: var(--main-color);
    font-weight: 900;
    letter-spacing: 5px;
    position: relative;
    width: 200px;
    float: right;
}


.index-pdt-t3 .title h2::after {
    position: absolute;
    top: -5px;
    left: 30px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--main-color);
    content: '';
    display: block;
    border-radius: 5px;
}

.index-pdt-t3 .title h2::before {
    position: absolute;
    top: -32px;
    left: 50px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--main-color);
    content: '';
    display: block;
    border-radius: 5px;
}

.index-pdt-t3 .index-pdt-t3-swiper {
    margin-top: 20px;
    padding-top: 40px;
    padding-bottom: 60px;
    position: relative;
}

.index-pdt-t3 .pdt-img {
    height: 240px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 576px) {
    .index-pdt-t3 .pdt-img {
        height: 290px;
    }
}

.index-pdt-t3 .pdt-img::after {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 5px;
    top: 0%;
    left: 0%;
    opacity: 0;
    transition: .3s ease .1s;
}

.index-pdt-t3 .pdt-box:hover .pdt-img::after {
    opacity: 1;
    transition: .3s ease .1s;
}

.index-pdt-t3 .pdt-img::before {
    position: absolute;
    content: 'MORE+';
    color: var(--main-color);
    line-height: 240px;
    font-family: 'inter';
    letter-spacing: 3px;
    display: block;
    width: 95%;
    height: 95%;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    top: 2.5%;
    left: 2.5%;
    z-index: 2;
    transition: .3s ease 0s;
    transform: scale(0.7);
    opacity: 0;
}

@media (max-width: 576px) {
    .index-pdt-t3 .pdt-img::before {
        line-height: 290px;
    }
}

.index-pdt-t3 .pdt-box:hover .pdt-img::before {
    opacity: 1;
    transform: scale(1);
    transition: .3s ease .2s;
}

.index-pdt-t3 .pdt-t {
    padding: 10px 0px;
}

.index-pdt-t3 .pdt-t h4 {
    font-size: 16px;
    letter-spacing: 3px;
    color: var(--basic-color);
    transition: .3s ease;
    padding-left: 10px;
    border-left: 5px solid var(--main-color);
}

.index-pdt-t3 .pdt-box:hover .pdt-t h4 {
    color: var(--main-color);
}

.index-pdt-t3 .swiper-button-next,
.index-pdt-t3 .swiper-button-prev {
    top: 8%;
    border: 1px solid var(--main-color);
    height: 30px;
    width: 30px;
    border-radius: 10px;

}

.index-pdt-t3 .swiper-button-prev {
    right: 40px !important;
    left: auto;
}

.index-pdt-t3 .swiper-button-next::after,
.index-pdt-t3 .swiper-button-prev::after {
    color: var(--main-color);
    font-weight: 900;
    font-size: 15px;
}

.index-pdt-t3 .swiper-pagination {
    bottom: 55px;
}

.swiper-pagination-bullet-active {
    background-color: var(--main-color);
}

.index-pdt-t3 a.t3-button2 {
    z-index: 200;
}

/*---- index-t3 end ----- */

/*---- in-banner-t3 ----*/

.in-banner-t3 {
    height: 400px;
}

.in-banner-t3 h1 {
    margin-top: 18%;
}

@media(max-width: 992px) {
    .in-banner-t3 {
        height: 300px;
    }

    .in-banner-t3 h1 {
        margin-top: 150px;
        font-size: 30px;
    }
}


/*---- in-banner-t3 end ----*/




/* ----- category-t3 ---- */

.category-t3 li {
    border: 1px solid #d4ddd4;
    border-radius: 5px;
    padding: 0 25px;
    position: relative;
    transition: .3s ease .1s;
}

.category-t3 li::after {
    position: absolute;
    width: 101%;
    height: 101%;
    top: 5px;
    left: 5px;
    content: '';
    display: block;
    border-radius: 5px;
    border: 1px solid #eee;
    transition: .3s ease;
    z-index: -1;
}

@media (max-width: 992px) {
    .category-t3 li {
        margin-bottom: 15px;
        border: none;
    }

    .category-t3 li::after {
        top: 0;
        left: 0;
    }
}

.category-t3 li a {
    color: var(--basic-color);
    transition: .3s ease .1s;
}

.category-t3 li.active::after,
.category-t3 li:hover::after {
    transform: rotateX(180deg);
    border-color: var(--main-color);
}

.category-t3 li.active a,
.category-t3 li:hover a {
    color: var(--main-color);
}

.category-t3 li.active,
.category-t3 li:hover {
    border-color: var(--main-color);
}

/* ----- category-t3 end ---- */


/* ----- sidenav-t3 ---- */
.sidenav-t3>li>a {
    background-color: transparent;
    color: #999;
    border-radius: 5px;
    position: relative;
    transition: .3s ease .1s;
}

.sidenav-t3>li>a::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    content: '';
    display: block;
    border-radius: 5px;
    border: 1px solid #d4d4d4;
    transition: .3s ease;
    z-index: -1;
}

.sidenav-t3>li:hover>a::before,
.sidenav-t3>li.active>a::before {
    transform: rotateX(180deg);
    border-color: var(--main-color);
}

.sidenav-t3>li:hover>a,
.sidenav-t3>li.active>a {
    border-color: var(--main-color);
    color: var(--main-color);
}


.sidenav-t3>li>a::after {
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    content: "\f054";
    float: right;
    margin-right: 15px;
    transition: .3s ease;
}

.sidenav-t3>li:hover>a::after,
.sidenav-t3>li.active>a::after {
    transform: rotate(90deg);
}

.sidenav-t3.unicon>li:hover>a::after,
.sidenav-t3.unicon>li.active>a::after {
    transform: rotate(0deg) translateX(5px);
}

.sidenav-t3>li ul li {
    margin-top: 5px;
    margin-left: 10px;
}

.sidenav-t3>li ul li a {
    border-left: 1px solid #eee;
    letter-spacing: 2px;
    color: #999;
    padding: 10px 0px 10px 30px;
    position: relative;
}

.sidenav-t3>li ul li:hover a,
.sidenav-t3>li ul li.active a {
    color: var(--basic-color);
    border-color: transparent;
}

.sidenav-t3>li ul li a::after {
    position: absolute;
    border-left: 1px solid transparent;
    display: block;
    content: '';
    width: 100%;
    height: 0%;
    top: 0;
    left: -1px;
    transition: .3s ease .1s;
}

.sidenav-t3>li ul li a::before {
    position: absolute;
    background-color: #f0f0f06c;
    display: block;
    content: '';
    width: 0%;
    height: 100%;
    top: 0;
    z-index: -1;
    left: -1px;
    transition: .3s ease .25s;
}

.sidenav-t3>li ul li.active a::after,
.sidenav-t3>li ul li:hover a::after {
    border-color: var(--main-color);
    height: 100%;
}

.sidenav-t3>li ul li:hover a::before,
.sidenav-t3>li ul li.active a::before {
    width: 100%;
}

/* ----- sidenav-t3 end ---- */


/* ---- pdt-t3 ----- */

.pdt-t3 .pdt-img {
    height: 230px;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}

@media (max-width: 576px) {
    .pdt-t3 .pdt-img {
        height: 290px;
    }
}

.pdt-t3 .pdt-img::after {
    position: absolute;
    top: 2.5%;
    left: 2.5%;
    display: block;
    content: '';
    width: 95%;
    height: 95%;
    border: 1px solid #fff;
    border-radius: 5px;
    z-index: 2;
    transition: .3s ease 0s;
    line-height: 230px;
    content: 'MORE+';
    text-align: center;
    color: transparent;
    font-weight: 700;
    letter-spacing: 3px;
}

@media (max-width: 576px) {
    .pdt-t3 .pdt-img::after {
        line-height: 290px;
    }
}

.pdt-t3 .pdt-box:hover .pdt-img::after {
    color: var(--main-color);
    border-color: var(--main-color);
}



.pdt-t3 .pdt-img::before {
    position: absolute;
    top: 0%;
    left: 0%;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 5px;
    transform: scale(0.6);
    opacity: 0;
    transition: .4s;
    transition-timing-function: cubic-bezier(0.23, 1, 0.320, 1);
}

.pdt-t3 .pdt-box:hover .pdt-img::before {
    opacity: 1;
    transform: scale(1);
}

.pdt-t3 .pdt-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.pdt-t3 .pdt-d {
    margin: 10px 0px;
}

.pdt-t3 .pdt-d h3 {
    color: var(--basic-color);
    font-size: 16px;
    padding-left: 10px;
    border-left: 3px solid #ccc;
    transition: .3s ease;
}

.pdt-t3 .pdt-box:hover .pdt-d h3 {
    color: var(--main-color);
    border-color: 3px solid var(--main-color);

}

/* ---- pdt-t3 end ----- */


/* ---- news-t3 & news-dt-t3 ---- */

.news-t3 .news-box {
    border-bottom: 1px solid #eee;
}

.news-t3 .news-m {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.news-t3 .time {
    border: 1px solid #eee;
    min-width: 80px;
    width: 80px;
    height: 80px;
    margin-right: 15px;
    border-radius: 5px;
    text-align: center;
    line-height: 25px;
    letter-spacing: 2px;
    font-family: 'inter';
    transition: .3s ease;
    position: relative;
}

.news-t3 .news-box:hover .time {
    background-color: var(--main-color);
    opacity: .7;
}

.news-t3 .time span {
    font-size: 14px;
    z-index: 2;
    color: var(--basic-color);
    display: block;
    position: absolute;
    bottom: 20px;
    left: 10px;
    transition: .3s ease 0s;
}

.news-t3 .news-box:hover .time span {
    color: #fff;
    opacity: 1;
}

.news-t3 .time::after {
    content: '';
    display: block;
    width: 95%;
    height: 95%;
    border: 1px solid #ccc;
    border-radius: 5px;
    position: absolute;
    top: -10px;
    left: -10px;
    transition: .3s ease;
}

.news-t3 .news-box:hover .time::after {
    border-color: var(--basic-color);
}




.news-t3 .news-ct h3 {
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: var(--basic-color);
    transition: .3s ease;
}

.news-t3 .news-box:hover .news-ct h3 {
    color: var(--main-color);
}

.news-t3 .news-ct p {
    font-size: 15px;
    color: #999;

}

.news-t3 .more {
    display: flex;
    height: 30px;
    flex-wrap: nowrap;
    margin-left: 10px;
    padding: 0 10px;
    line-height: 30px;
    font-size: 14px;
    position: relative;
}

.news-t3 .more::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    width: 0%;
    height: 1px;
    transition: .3s ease;
    background-color: var(--main-color);
}

.news-t3 .news-box:hover .more::after {
    width: 100%;
}

.news-dt-t3 .time {
    font-family: 'inter';
    font-size: 14px;
    border: 1px solid #ccc;
    padding: 5px 0;
    display: block;
    width: 140px;
    color: var(--main-color);
    text-align: center;
    letter-spacing: 2px;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* ---- news-t3 & news-dt-t3 end ---- */


/* ----case-t3 ( photo-t3 ) & case-dt-t3 ----*/


.case-t3 .case-box {
    transition: .3s ease;
}

.case-t3 .case-box:hover {
    border-color: var(--main-color);
}

.case-t3 .case-img {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.case-t3 .case-img::after {
    content: '';
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: var(--main-color);
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    top: 0;
    border-radius: 5px;
    left: 0px;
    transition: .3s ease 0s;
    transform: scale(0.8);
    opacity: 0;
}


.case-t3 .case-box:hover .case-img::after {
    opacity: 1;
    transform: scale(1);
}

.case-t3 .case-img::before {
    content: 'MORE+';
    font-family: 'inter';
    text-align: center;
    line-height: 40px;
    line-height: 310px;
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: 900;
    color: transparent;
    display: block;
    position: absolute;
    width: 95%;
    height: 95%;
    border: 1px solid #fff;
    border-radius: 5px;
    top: 2.5%;
    left: 2.5%;
    transition: .4s ease .1s;
    z-index: 1;
}

@media (max-width:992px) {
    .case-t3 .case-img::before {
        line-height: 220px;
    }
}

@media (max-width:576px) {
    .case-t3 .case-img::before {
        line-height: 270px;
    }
}

.case-t3 .case-box:hover .case-img::before {
    border-color: var(--main-color);
    color: var(--main-color);
}

.case-t3 .case-ct {
    margin: 10px 0;
}

.case-t3 .case-ct .title {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 30px;
    color: var(--basic-color);
    padding: 0 15px;
    border-left: 5px solid #e6e6e6;
    transition: .3s ease;
}

.case-t3 .case-box:hover .case-ct .title {
    color: var(--main-color);
    border-left-color: var(--main-color);
}

.case-t3 .case-dc {
    text-align: center;
    font-size: 15px;
    color: #999;
    letter-spacing: 2px;
}

.case-dt-t3 .gallery-item img {
    overflow: hidden;
    border-radius: 5px;
}

/* ----case-t3 ( photo-t3 ) & case-dt-t3 end---- */


/* ---- qa-t3 ---- */

.qa-t3 .qa-box {
    border-radius: 10px;
    transition: .3s ease;
    margin-bottom: 10px;
}

.qa-t3 .qa-box:hover,
.qa-t3 .qa-box.active {
    border-color: var(--main-color);
}

.qa-t3 .qa-box .qa-title {
    padding: 10px 10px;
    letter-spacing: 2px;
    color: #666;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    transition: .3s ease;
}

.qa-t3 .qa-box .qa-title h4 {
    font-size: 20px;
    line-height: 35px;
    font-weight: 700;
}

.qa-t3 .qa-box:hover .qa-title,
.qa-t3 .qa-box.active .qa-title {
    border-color: var(--main-color);
    color: var(--main-color);
}


.qa-t3 .qa-box .qa-title h4::before {
    content: '\2b';
    font-size: 22px;
    transition: .3s ease;
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

.qa-t3 .qa-box.active .qa-title h4::before,
.qa-t3 .qa-box:hover .qa-title h4::before {
    transform: rotate(45deg);
}

.qa-t3 .qa-box .qa-answer {
    margin: 10px 0px;
    background-color: #fafafa;
    padding: 10px 20px;
    line-height: 30px;
    letter-spacing: 2px;
    border-left: 1px solid var(--main-color);
}


/* ---- qa-t3 end ---- */


/* ---- dl-t3 ---- */

.dl-t3 .dl-table thead {
    color: var(--basic-color);
}

.dl-t3 .dl-table thead th {
    border: none;
    background-color: #fafafa;
    border-bottom: 1px solid #ccc;

}

@media (max-width: 576px) {
    .dl-t3 .dl-table thead.mb {
        background-color: #fff;
    }
}

.dl-t3 .dl-table tbody td {
    transition: .3s ease;
    border-left: none;
    border-right: none;
}

.dl-t3 .dl-table tbody tr:hover td {
    border-bottom-color: #ccc;
    color: var(--main-color);
}

/* ---- dl-t3 end ---- */

/* ---- contact-t3 ---- */


.contact-t3 .contact-title {
    margin-bottom: 20px;
}

.contact-t3 .contact-title h3 {
    font-weight: 900;
    color: var(--basic-color);
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}


.contact-t3 .contact-icon {
    padding: 15px 10px;
    margin-bottom: 10px;
    background-color: #fcfcfc;
}

.contact-t3 .contact-info .info-title {
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--main-color);
}

.contact-t3 .contact-info .info-title::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 1px solid var(--main-color);
    box-shadow: 5px 5px 1px;
    margin-right: 10px;
    opacity: .7;
}

.contact-t3 .contact-info .info-content {
    color: var(--vice-color);
}

.contact-t3 .info-content a {
    color: var(--vice-color);
}

/* ---- contact-t3 end---- */



/* ---- main-t3 ---- */

.main-t3 .main-title {
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.main-t3 .main-title h3 {
    color: var(--main-color);
}


.main-t3 .main-list ul li a {
    font-size: 16px;
    padding: 10px 0px;
    background-color: #fff;
    color: var(--basic-color);
    text-align: center;
    border-radius: 5px;
    position: relative;
}

.main-t3 .main-list ul li a::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: .3s ease;
}

.main-t3 .main-list ul li a:hover {
    color: var(--main-color);
}

.main-t3 .main-list ul li a:hover::after {
    border-color: var(--main-color);
    transform: rotateX(180deg);
}



/* ---- main-t3 end ---- */


/* ---- footer-t3 ---- */

.footer-t3 {
    padding-bottom: 0;
    color: var(--basic-color);
    background: #fefefe;
}

.footer-t3 a {
    color: var(--basic-color);
    transition: .3s ease;
}

.footer-t3 a:hover {
    color: var(--main-color);
}

.footer-t3 .f-img {
    width: 200px;
}

.footer-t3 .f-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-t3 .f-iconbox {
    display: inline-flex;
    margin: 0 15px 15px 0;
}

.footer-t3 .f-info {
    font-size: 14px;
    line-height: 30px;
}


.footer-t3 .copyright {
    margin-top: 15px;
    padding: 3px 0px;
    font-size: 13px;
    text-align: center;
    letter-spacing: 3px;
    background-color: var(--main-color);
    color: #fff;
}

/* ---- footer-t3 end ---- */





/* ----------------------------------------------------------------------------------------------------------------------------------------------------------
SAAS Theme t4
header > index > category ( 上選單 ) + sidenav ( 側選單 ) >
ab > pdt > news > case + photo > qa > dl > contact > form
----------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*---- header-t4 ----- */

header.header-t4 {
    height: 80px;
    background: #fff;
}

.header-t4 .fixed-top {
    transition: .3s ease;
    background-color: rgba(255, 255, 255, 1);
    padding-right: 0px !important;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
}

.header-t4 .logo {
    width: 180px;
    height: 80px;
    display: inline-flex;
    margin-right: auto;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
}

.header-t4 .logo img {
    width: 180px;
}

.header-t4 .nav-menu {
    margin: 0;
    padding: 0;
    height: 100%;
}

@media(min-width: 992px) {
    .header-t4 .nav-menu ul {
        display: flex;
        margin: 0;
        padding: 0;
        height: 100%;
        justify-content: center;
    }
}

.header-t4 .nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    list-style: none;
    height: 80px;
    transition: .3s ease;
    margin: 0px 5px;
}

.header-t4 .nav-menu>ul>li::before {
    position: absolute;
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: var(--main-color);
    bottom: -3px;
    left: calc(50% - 5px);
    transition: .3s ease .3s;
    transform: scale(0);
    z-index: 100;

}

.header-t4 .nav-menu>ul>li::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--main-color);
    margin: -4px auto 0 auto;
    transition: .3s ease .1s;
    transform: scaleX(0);
    z-index: 100;
}

.header-t4 .nav-menu>ul>li.active::after,
.header-t4 .nav-menu>ul>li:hover::after {
    transform: scaleX(1);
}

.header-t4 .nav-menu>ul>li.active::before,
.header-t4 .nav-menu>ul>li:hover::before {
    transform: scale(1);
}

.header-t4 .nav-menu a {
    display: block;
    position: relative;
    color: var(--basic-color);
    padding: 0 15px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
}

.header-t4 .nav-menu>ul>li>a {
    display: block;
    position: relative;
    color: var(--basic-color);
    height: 100%;
    padding: 0 8px;
    transition: 0.3s;
    font-size: 16px;
    line-height: 80px;
    font-weight: 700;
}




.header-t4 .nav-menu a:hover,
.header-t4 .nav-menu .active>a,
.header-t4 .nav-menu li:hover>a {
    color: var(--main-color);
    text-decoration: none;
}


.header-t4 .nav-menu .drop-down ul {
    display: none;
    position: absolute;
    left: -30%;
    top: 100%;
    height: auto;
    z-index: 99;
    background-color: #fff;
    transition: ease all 0.3s;
    list-style: none;
    border-bottom: 1px solid var(--main-color);
    box-sizing: border-box;
}


.header-t4 .nav-menu .drop-down li {
    min-width: 180px;
    text-align: center;
    position: relative;
}

.header-t4 .nav-menu .drop-down ul a {
    display: block;
    height: 100%;
    width: 100%;
    font-size: 16px;
    line-height: 50px;
    font-weight: 500;
    text-transform: none;
    transition: .3s ease;
    color: var(--basic-color);
}

.header-t4 .nav-menu .drop-down ul li {
    transition: .3s ease;
    border-bottom: 3px solid transparent;

}

.header-t4 .nav-menu .drop-down ul li:hover {
    border-bottom-color: var(--main-color);
    background-color: #f9f9f9;
}

.header-t4 .nav-menu .drop-down ul .active>a,
.header-t4 .nav-menu .drop-down ul li:hover>a {
    color: var(--main-color) !important;
}

.header-t4 .nav-menu .drop-down>a:after {
    /* content: "\eac8";
    font-family: IcoFont;
    font-weight: 700; */
    content: '\f078';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 400;
    padding-left: 5px;
    transition: .3s ease;
}


.header-t4 .nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.header-t4 .nav-menu .drop-down .drop-down:hover>ul {
    display: block;
    top: 0;
    left: 100%;
    animation-name: toLeft;
    animation-duration: .5s;
    animation-delay: 0ms;
}

@keyframes toLeft {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0px);
        opacity: 1;
    }
}


.header-t4 .nav-menu .drop-down .drop-down>a:after {
    content: "\eaca";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .header-t4 .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .header-t4 .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }

    .header-t4 .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}

/* 選單hover效果 */
.header-t4 .nav-menu>ul>.drop-down:hover>ul {
    display: block;
    animation-name: header_t4;
    animation-duration: .5s;
    animation-delay: 0ms;
    animation-timing-function: ease;
}


@keyframes header_t4 {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}


/*---- header-t4 end ----- */


/*---- index-t4 ----- */

.index-ab-t4 .ab-box {
    text-align: center;
}

.index-ab-t4 .ab-box .title {
    margin: 20px 0 40px 0;
    position: relative;
}

.index-ab-t4 .ab-box .title::after {
    width: 50%;
    height: 2px;
    background-color: #eee;
    content: '';
    display: block;
    margin: 15px auto;
}

.index-ab-t4 .ab-box .title::before {
    width: 12px;
    height: 12px;
    background-color: var(--main-color);
    content: '';
    display: block;
    position: absolute;
    bottom: -6px;
    left: calc(50% - 6px);
}

.index-ab-t4 .ab-box .title h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--main-color);
}

.index-ab-t4 .ab-box .content {
    -webkit-line-clamp: 4;
    color: var(--basic-color);
    font-size: 15px;
    line-height: 30px;

}

.index-ab-t4 .ab-box-1 {
    margin-bottom: 60px;
}

.index-ab-t4 .ab-img-m {
    position: relative;
}

.index-ab-t4 .ab-img-m::before {
    position: absolute;
    top: -50px;
    left: calc(50% - 2.5px);
    width: 5px;
    height: 80px;
    content: '';
    display: block;
    background-color: var(--main-color);
    z-index: 2;
}

.index-news-t4 .top.title {
    text-align: right;
    position: relative;
}

.index-news-t4 .top.title::after {
    content: '';
    display: block;
    width: calc(100% / 12 * 8);
    height: 2px;
    background-color: #eee;
    float: right;
    margin: 15px 0px;
}

.index-news-t4 .top.title::before {
    content: '';
    display: block;
    background-color: var(--main-color);
    width: 10px;
    height: 10px;
    position: absolute;
    bottom: -21px;
    right: calc(100% / 12 *8 - 5px);
}

.index-news-t4 .top.title h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--main-color);
}


.index-news-t4 .news-box-m {
    transition: .3s ease;
    transform: translateY(-28px);
}

.index-news-t4 .news-box-m .news-img {
    height: 300px;
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
}

.index-news-t4 .news-box-m .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease .2s;
}

.index-news-t4 .news-box-m:hover .news-img img {
    transform: scale(1.1);
}

.index-news-t4 .news-box-m .news-img .time {
    position: absolute;
    background-color: #fff;
    left: 10px;
    bottom: 10px;
    font-size: 15px;
    padding: 6px 12px;
    color: var(--basic-color);
    font-family: 'inter';
    letter-spacing: 3px;
}

@media (max-width: 992px) {
    .index-news-t4 .news-box-m {
        transform: translateY(0px);
    }

}

.index-news-t4 .news-box-m .news-ct h3 {
    font-size: 18px;
    color: var(--basic-color);
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
    transition: .3s ease;
}

.index-news-t4 .news-box-m:hover .news-ct h3 {
    color: var(--main-color);
}

.index-news-t4 .news-box-m .news-ct p {
    -webkit-line-clamp: 4;
    font-size: 15px;
    line-height: 30px;
    color: #888;
    transition: .3s ease;
}

.index-news-t4 .news-w>a {
    display: block;
    height: 100px;
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .index-news-t4 .news-w>a {
        display: block;
        height: 80px;
        margin-bottom: 20px;
    }

}


.index-news-t4 .news-box {
    display: flex;
    height: 100%;
}

.index-news-t4 .news-box .time {
    width: 80px;
    min-width: 80px;
    height: 100%;
    font-family: 'inter';
    text-align: center;
    line-height: 30px;
    padding-top: 20px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 3px;
    margin-right: 50px;
    background-color: var(--main-color);
    position: relative;
    transition: .3s ease;
    z-index: 10;

}

.index-news-t4 .news-box .time::after {
    position: absolute;
    content: '';
    display: block;
    width: 60%;
    height: 2px;
    background-color: var(--main-color);
    bottom: 50%;
    right: -80%;
    transition: .3s ease;
}

@media (min-width: 768px) {
    .index-news-t4 .news-box:hover .time {
        opacity: .7;
    }

    .index-news-t4 .news-box:hover .time::after {
        transform: translateX(10px);
    }
}

@media (max-width: 768px) {
    .index-news-t4 .news-box .time {
        margin-right: 10px;
        background-color: transparent;
        color: var(--basic-color);
        border-right: 1px solid #ccc;
        font-weight: 700;
    }

    .index-news-t4 .news-box:hover .time {
        color: var(--main-color);
        border-right-color: var(--main-color);
    }

    .index-news-t4 .news-box .time::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .index-news-t4 .news-box .time {
        padding-top: 10px;
        font-size: 14px;
    }

}

.index-news-t4 .news-box .news-img {
    width: 100px;
    min-width: 100px;
    height: 100%;
    transition: .3s ease;
}

.index-news-t4 .news-box:hover .news-img {
    opacity: .8;
}

.index-news-t4 .news-box .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .index-news-t4 .news-box .news-img {
        display: none;
    }
}

.index-news-t4 .news-box .news-ct {
    padding: 0 0 0 15px;
}

@media (max-width: 768px) {
    .index-news-t4 .news-box .news-ct {
        padding: 0px;
    }
}

.index-news-t4 .news-box .news-ct h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--basic-color);
    margin-bottom: 20px;
    transition: .3s ease;
}

.index-news-t4 .news-box:hover .news-ct h3 {
    color: var(--main-color);
}

@media (max-width: 576px) {
    .index-news-t4 .news-box .news-ct h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
}

.index-news-t4 .news-box .news-ct .dc {
    font-size: 15px;
    line-height: 28px;
    color: #888;
    transition: .3s ease;
}

.index-news-t4 .news-box:hover .news-ct .dc {
    color: var(--basic-color);
}

.index-pdt-t4 .title {
    margin-bottom: 15px;
}

.index-pdt-t4 .title h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--main-color);
    padding-left: calc(100% / 12 * 4 + 25px);
    position: relative;
}

.index-pdt-t4 .title h2::before {
    position: absolute;
    width: calc(100% / 12 * 4);
    height: 2px;
    top: 50%;
    left: 0;
    content: '';
    display: block;
    background-color: #ccc;
}

.index-pdt-t4 .title h2::after {
    position: absolute;
    left: calc(100% / 12 * 4);
    top: calc(50% - 4px);
    height: 10px;
    width: 10px;
    content: '';
    display: block;
    background-color: var(--main-color);
}

.index-pdt-t4 .index-pdt-t4-swiper {
    padding-bottom: 30px;
}

.index-pdt-t4 .pdt-box .pdt-img {
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.035);
    height: 250px;
    transition: .3s ease;
}

@media (max-width: 992px) {
    .index-pdt-t4 .pdt-box .pdt-img {
        padding: 20px;
        height: 230px;
    }
}

@media (max-width: 576px) {
    .index-pdt-t4 .pdt-box .pdt-img {
        padding: 30px;
        height: 300px;
    }
}

.index-pdt-t4 .pdt-box .pdt-img img {
    border: 5px solid #fff;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
    opacity: .8;
}

.index-pdt-t4 .pdt-box:hover .pdt-img img {
    opacity: 1;
}

.index-pdt-t4 .pdt-box .pdt-t {
    padding: 10px 0;
}

.index-pdt-t4 .pdt-box .pdt-t h4 {
    font-size: 16px;
    padding: 0 0 0 10px;
    border-left: 5px solid #ccc;
    letter-spacing: 3px;
    color: var(--basic-color);
    transition: .3s ease;
}

.index-pdt-t4 .pdt-box:hover .pdt-t h4 {
    color: var(--main-color);
    border-left-color: var(--main-color);
}

.index-pdt-t4 a.t4-button1 {
    float: right;
}

@media (max-width: 576px) {
    .index-pdt-t4 a.t4-button1 {
        float: inherit;
    }
}

/*---- index-t4 end ----- */



/* ----- category-t4 ---- */

.category-t4 li {
    border-bottom: 2px solid #ddd;
    position: relative;
    transition: .3s ease;
}

@media (max-width: 992px) {
    .category-t4 li {
        margin-bottom: 15px;
    }
}

.category-t4 li::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    top: 2px;
    left: 0;
    z-index: -2;
    border-bottom: 2px solid var(--main-color);
    transition: .3s ease 0s;
    transform: scaleX(0);
}

.category-t4 li::before {
    z-index: -1;
    position: absolute;
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #ddd;
    bottom: -6px;
    z-index: -1;
    left: calc(50% - 5px);
    transition: .3s ease;
}

.category-t4 li.active::before,
.category-t4 li:hover::before {
    background-color: var(--main-color);
    rotate: 45deg;
}

.category-t4 li.active::after,
.category-t4 li:hover::after {
    transform: scaleX(1);
}

.category-t4 li a {
    color: #999;
    transition: .3s ease .1s;
}

.category-t4 li:hover,
.category-t4 li.active {
    border-bottom-color: transparent;
}

.category-t4 li.active a,
.category-t4 li:hover a {
    color: var(--main-color);
}

/* ----- category-t4 end ---- */


/* ----- sidenav-t4 ---- */
.sidenav-t4>li>a {
    background-color: transparent;
    color: #aaa;
    border-bottom: 2px solid #eee;
    position: relative;
    transition: .3s ease;
}

.sidenav-t4>li>a::before {
    position: absolute;
    width: 0%;
    height: 100%;
    top: 2px;
    left: 0px;
    content: '';
    display: block;
    border-bottom: 2px solid var(--main-color);
    transition: .3s ease .08s;
    z-index: -1;
}

.sidenav-t4>li.active>a::before,
.sidenav-t4>li:hover>a::before {
    width: 100%;
}

.sidenav-t4>li:hover>a,
.sidenav-t4>li.active>a {
    border-bottom-color: transparent;
    color: var(--main-color);
}


.sidenav-t4>li>a::after {
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    content: "\f0c8";
    float: right;
    margin-right: 15px;
    font-size: 13px;
    margin-top: 3px;
    transition: .3s ease;
}

.sidenav-t4>li:hover>a::after,
.sidenav-t4>li.active>a::after {
    transform: rotate(45deg);
}

.sidenav-t4.unicon>li:hover>a::after,
.sidenav-t4.unicon>li.active>a::after {
    transform: rotate(45deg);
}

.sidenav-t4>li ul li {
    margin-top: 5px;
    margin-left: 20px;
}

.sidenav-t4>li ul li a {
    letter-spacing: 2px;
    color: #999;
    padding: 10px 0px 10px 30px;
    position: relative;
    border-bottom: 2px solid #eee;
}

.sidenav-t4>li ul li:hover a,
.sidenav-t4>li ul li.active a {
    color: var(--main-color);
}

.sidenav-t4>li ul li a::after {
    position: absolute;
    display: block;
    content: '';
    width: 0%;
    height: 100%;
    top: 2px;
    border-bottom: 2px solid var(--main-color);
    left: 0px;
    transition: .3s ease .1s;
}

.sidenav-t4>li ul li a::before {
    font-weight: 300;
    display: inline-block;
    content: "";
    width: 10px;
    height: 10px;
    border-left: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    margin-top: 5px;
    margin-right: 15px;
    transition: .3s ease;
    font-size: 15px;
}

.sidenav-t4>li ul li.active a::after,
.sidenav-t4>li ul li:hover a::after {
    width: 100%;
}

.sidenav-t4>li ul li:hover a::before,
.sidenav-t4>li ul li.active a::before {
    transform: rotate(-135deg);
    border-left-color: var(--main-color);
    border-bottom-color: var(--main-color);
}

/* ----- sidenav-t4 end ---- */


/* ---- pdt-t4 ----- */




.pdt-t4 .title {
    margin-bottom: 15px;
}

.pdt-t4 .title h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--main-color);
    padding-left: calc(100% / 12 * 4 + 25px);
    position: relative;
}

.pdt-t4 .title h2::before {
    position: absolute;
    width: calc(100% / 12 * 4);
    height: 2px;
    top: 50%;
    left: 0;
    content: '';
    display: block;
    background-color: #ccc;
}

.pdt-t4 .title h2::after {
    position: absolute;
    left: calc(100% / 12 * 4);
    top: calc(50% - 4px);
    height: 10px;
    width: 10px;
    content: '';
    display: block;
    background-color: var(--main-color);
}

.pdt-t4 .pdt-box .pdt-img {
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.035);
    height: 250px;
    transition: .3s ease;
}

@media (max-width: 992px) {
    .pdt-t4 .pdt-box .pdt-img {
        padding: 20px;
        height: 230px;
    }
}

@media (max-width: 576px) {
    .pdt-t4 .pdt-box .pdt-img {
        padding: 30px;
        height: 300px;
    }
}

.pdt-t4 .pdt-box .pdt-img img {
    border: 5px solid #fff;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
    opacity: .8;
}

.pdt-t4 .pdt-box:hover .pdt-img img {
    opacity: 1;
}

.pdt-t4 .pdt-box .pdt-t {
    padding: 10px 0;
}

.pdt-t4 .pdt-box .pdt-t h4 {
    font-size: 16px;
    padding: 0 0 0 10px;
    border-left: 5px solid #ccc;
    letter-spacing: 3px;
    color: var(--basic-color);
    transition: .3s ease;
}

.pdt-t4 .pdt-box:hover .pdt-t h4 {
    color: var(--main-color);
    border-left-color: var(--main-color);
}

.pdt-t4 a.t4-button1 {
    float: right;
}

@media (max-width: 576px) {
    .pdt-t4 a.t4-button1 {
        float: inherit;
    }
}



/* ---- pdt-t4 end ----- */

/* ---- news-t4 & news-dt-t4 ---- */


.news-t4 .news-w>a {
    display: block;
    height: 100px;
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .news-t4 .news-w>a {
        display: block;
        height: 80px;
        margin-bottom: 20px;
    }

}

.news-t4 .news-box {
    display: flex;
    height: 100%;
}

.news-t4 .news-box .time {
    width: 80px;
    min-width: 80px;
    height: 100%;
    font-family: 'inter';
    text-align: center;
    line-height: 30px;
    padding-top: 20px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 3px;
    margin-right: 50px;
    background-color: var(--main-color);
    position: relative;
    transition: .3s ease;
    z-index: 10;

}

.news-t4 .news-box .time::after {
    position: absolute;
    content: '';
    display: block;
    width: 60%;
    height: 2px;
    background-color: var(--main-color);
    bottom: 50%;
    right: -80%;
    transition: .3s ease;
}

@media (min-width: 768px) {
    .news-t4 .news-box:hover .time {
        opacity: .7;
    }

    .news-t4 .news-box:hover .time::after {
        transform: translateX(10px);
    }
}

@media (max-width: 768px) {
    .news-t4 .news-box .time {
        margin-right: 10px;
        background-color: transparent;
        color: var(--basic-color);
        border-right: 1px solid #ccc;
        font-weight: 700;
    }

    .news-t4 .news-box:hover .time {
        color: var(--main-color);
        border-right-color: var(--main-color);
    }

    .news-t4 .news-box .time::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .news-t4 .news-box .time {
        padding-top: 10px;
        font-size: 14px;
    }

}

.news-t4 .news-box .news-img {
    width: 100px;
    min-width: 100px;
    height: 100%;
    transition: .3s ease;
}

.news-t4 .news-box:hover .news-img {
    opacity: .8;
}

.news-t4 .news-box .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .news-t4 .news-box .news-img {
        display: none;
    }
}

.news-t4 .news-box .news-ct {
    padding: 0 0 0 15px;
}

@media (max-width: 768px) {
    .news-t4 .news-box .news-ct {
        padding: 0px;
    }
}

.news-t4 .news-box .news-ct h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--basic-color);
    margin-bottom: 20px;
    transition: .3s ease;
}

.news-t4 .news-box:hover .news-ct h3 {
    color: var(--main-color);
}

@media (max-width: 576px) {
    .news-t4 .news-box .news-ct h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
}

.news-t4 .news-box .news-ct .dc {
    font-size: 15px;
    line-height: 28px;
    color: #888;
    transition: .3s ease;
}

.news-t4 .news-box:hover .news-ct .dc {
    color: var(--basic-color);
}

.news-dt-t4 .time {
    font-family: 'inter';
    font-size: 14px;
    border-bottom: 1px solid;
    display: block;
    height: 30px;
    width: 100px;
    text-align: center;
    margin: 0 auto 15px auto;
}

.news-dt-t4 .news-dt-title::after {
    display: none;
}

/* ---- news-t4 & news-dt-t4 end ---- */


/* ----case-t4 ( photo-t4 ) & case-dt-t4 ----*/



.case-t4 .case-img {
    padding: 40px;
    background-color: #f8f8f8;
    position: relative;
    border-bottom: 2px solid #ddd;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .case-t4 .case-img {
        padding: 20px;
    }
}

.case-t4 .case-img img {
    border: 6px solid #fff;
    transition: .3s ease;
    opacity: .8;
}

.case-t4 .case-img img {
    opacity: 1;
}

.case-t4 .case-img::after {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    bottom: -2px;
    left: 0;
    border-bottom: 3px solid var(--main-color);
    transform: scaleX(0);
    transition: .3s ease;
}

.case-t4 .case-box:hover .case-img::after {
    transform: scaleX(-1);
}

.case-t4 .case-img::before {
    position: absolute;
    width: 10px;
    height: 10px;
    display: block;
    content: '';
    bottom: -5px;
    left: calc(50% - 5px);
    background: #ddd;
    transition: .3s ease;
}

.case-t4 .case-box:hover .case-img::before {
    transform: rotate(45deg);
    background-color: var(--main-color);
}

.case-t4 .case-ct {
    margin: 10px 0;
}

.case-t4 .case-ct .title {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 30px;
    color: var(--basic-color);
    padding: 0 15px;
    transition: .3s ease;
}

.case-t4 .case-box:hover .case-ct .title {
    color: var(--main-color);
    border-left-color: var(--main-color);
}

.case-t4 .case-dc {
    display: flex;
    border-top: 1px solid #eee;
    padding-top: 10px;
    flex-wrap: nowrap;
    justify-content: space-between;
    font-size: 15px;
    color: #c9c9c9;
    letter-spacing: 2px;
}


/* ----case-t4 ( photo-t4 ) & case-dt-t4 end---- */


/* ---- qa-t4 ---- */

.qa-t4 .qa-box {
    margin-bottom: 25px;
}

.qa-t4 .qa-title {
    background-color: #00000007;
    padding: 20px;
    position: relative;
    margin-bottom: 10px;
    transition: .3s ease;
}

.qa-t4 .qa-box:hover .qa-title,
.qa-t4 .qa-box.active .qa-title {
    background-color: #0000000c;
}

.qa-t4 .qa-title h4 {
    letter-spacing: 2px;
    position: relative;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0px;
    transition: .3s ease;
}

.qa-t4 .qa-title h4::before {
    font-family: "inter";
    font-weight: 400;
    font-size: 22px;
    content: "\51";
}

.qa-t4 .qa-box:hover .qa-title h4,
.qa-t4 .qa-box.active .qa-title h4 {
    color: var(--main-color);
}


.qa-t4 .qa-title::after {
    position: absolute;
    bottom: -5px;
    left: calc(50% - 1px);
    width: 2px;
    height: 20px;
    display: block;
    content: '';
    background: #ddd;
    transition: all 400ms ease .1s;
}

.qa-t4 .qa-box:hover .qa-title::after,
.qa-t4 .qa-box.active .qa-title::after {
    transform: translateY(12px);
    height: 25px;
    background-color: var(--main-color);
}

.qa-t4 .qa-answer {
    padding: 20px;
    line-height: 30px;
    color: var(--basic-color);
    background-color: #00000007;
}

.qa-t4 .qa-box:hover .qa-answer,
.qa-t4 .qa-box.active .qa-answer {
    background-color: #0000000c;
}

/* ---- qa-t4 end ---- */


/* ---- dl-t4 ---- */

.dl-t4 .dl-table thead {
    color: var(--main-color);
}

.dl-t4 .dl-table thead th {
    border: none;
    border-bottom: 2px solid var(--main-color);
}

@media (max-width: 576px) {
    .dl-t4 .dl-table thead.mb {
        background-color: #fff;
    }
}

.dl-t4 .dl-table tbody td {
    transition: .3s ease;
    border: none;
    font-size: 15px;
    color: #666;
    border-bottom: 1px solid #eee;
}

.dl-t4 .dl-table tbody tr:hover td {
    background-color: #00000004;
    color: var(--main-color);
}

/* ---- dl-t4 end ---- */

/* ---- contact-t4 ---- */

.contact-t4 .contact-title {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.contact-t4 .contact-title::after {
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--main-color);
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: -6px;
}

.contact-t4 .contact-title h3 {
    letter-spacing: 1.5px;
    color: var(--main-color);
}

.contact-t4 .contact-info {
    border-bottom: 1px solid #ccc;
    float: left;
    width: 100%;
    padding-bottom: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.contact-t4 .contact-info:last-child {
    border: 0;
}

.contact-t4 .contact-info .cont-icon {
    float: left;
    margin-right: 30px;
}

.contact-t4 .contact-info .cont-icon>i {
    display: inline-block;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    background: var(--main-color);
    color: #fff;
    font-size: 25px;
}

.contact-t4 .contact-info>h5 {
    font-size: 18px;
    margin: 0;
    color: var(--main-color);
    font-weight: 600;
}

.contact-t4 .contact-info>p {
    margin-bottom: 0;
    letter-spacing: 2px;
    color: var(--vice-color);
}

.contact-t4 .contact-info>p>a {
    color: var(--vice-color);
}

.contact-t4 .send {
    background: var(--main-color);
    color: #ffffff;
    border-radius: 0;
    padding: 5px 25px;
    margin: 10px 0;
}

.contact-t4 .send:hover {
    background: var(--vice-color);
    color: var(--main-color);
}

/* ---- contact-t4 end---- */



/* ---- main-t4 ---- */

.main-t4 .main-title {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 15px;
    text-align: center;
}

.main-t4 .main-title::after {
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: -20px;
    background-color: var(--main-color);
}

.main-t4 .main-list ul li a {
    letter-spacing: 3px;
    display: block;
    padding: 10px;
    width: 100%;
    height: 100%;
    color: var(--vice-color);
    transition: .3s ease;
    border-bottom: 1px solid #eee;
    position: relative;
}

.main-t4 .main-list ul li a:hover {
    color: var(--main-color);
}

.main-t4 .main-list ul li a::after {
    position: absolute;
    width: 0%;
    height: 1px;
    content: '';
    display: block;
    background-color: var(--main-color);
    bottom: 0px;
    left: 0;
    transition: all .3s ease .1s;

}

.main-t4 .main-list ul li a:hover::after {
    width: 100%;
}


/* ---- main-t4 end ---- */


/* ---- footer-t4 ---- */


.footer-t4 {
    border-top: 5px solid #eee;
}

.footer-t4::before {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--main-color);
    content: '';
    display: block;
    top: -10px;
    left: calc(50% - 7.5px);
}

.footer-t4 .f-img {
    width: 200px;
    margin: 0 auto;
}

.footer-t4 .f-infobox {
    height: 100%;
    display: flex;
    flex-wrap: wrap;

}

.footer-t4 .f-infobox .f-info {
    width: 100%;
    margin: 10px 0px;
    padding-left: 15px;
    border-left: 3px solid var(--main-color);
}

.footer-t4 .f-infobox .f-info h5 {
    font-size: 18px;
    color: var(--main-color);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.footer-t4 .f-infobox .f-info p {
    color: var(--basic-color);
    font-family: 'inter';
    letter-spacing: 3px;
}

.footer-t4 .copyright {
    text-align: center;
    font-size: 15px;
    color: #bbb;
}

@media (max-width: 992px) {
    .footer-t4 .f-title {
        margin-top: 20px;
    }
}

/* ---- footer-t4 end ---- */







/* ----- category-t5 ---- */


@media (min-width: 992px) {
    .category-t5 li {
        height: 60px;
        line-height: 60px;
    }
}

.category-t5 li {
    position: relative;
    transition: .3s ease;
    background-color: var(--basic-color);
    margin: 0;
}


.category-t5 li::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    top: 0;
    left: 0;
    background-color: var(--main-color);
    z-index: -2;
}

.category-t5 li a {
    color: #999;
    letter-spacing: 5px;
    font-size: 15px;
}

.category-t5 li:hover,
.category-t5 li.active {
    background-color: transparent;
}

.category-t5 li.active a,
.category-t5 li:hover a {
    color: #fff;
}

/* ----- category-t5 end ---- */


/* ----- sidenav-t5 ---- */
.sidenav-t5 li {
    margin-bottom: 0 !important;
}

.sidenav-t5>li ul {
    margin-top: 0;
}

.sidenav-t5>li>a {
    background-color: #555;
    color: #999;
    position: relative;
    transition: .3s ease;
}


.sidenav-t5>li:hover>a,
.sidenav-t5>li.active>a {
    background-color: var(--main-color);
    color: #fff;
}

.sidenav-t5>li ul li {
    background-color: #ccc;
    border-left: 15px solid #888;
}

.sidenav-t5>li ul li:hover,
.sidenav-t5>li ul li.active {
    border-left-color: #666;
}

.sidenav-t5>li ul li a {
    letter-spacing: 2px;
    color: #999;
    position: relative;

}

.sidenav-t5>li ul li:hover a,
.sidenav-t5>li ul li.active a {
    color: var(--main-color);
    background-color: #fff;
    ;
}




/* ----- sidenav-t5 end ---- */


/* ------ ab-t5 ------ */

.ab-t5 .ab-box {
    height: fit-content;
}

.ab-t5 .ab-img-st {
    height: 500px;
}

@media (max-width: 992px) {
    .ab-t5 .ab-img-st {
        height: 300px;
    }

}

.ab-t5 .ab-img-st img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.ab-text-nd {
    display: flex;
}

@media (max-width: 992px) {
    .ab-text-nd {
        transform: translateY(0px);
        display: block;
        margin-bottom: inherit;
    }
}

.ab-t5 .title {
    width: 200px;
    min-width: 200px;
    height: 200px;
    background-color: #222;
    color: #fff;
    text-align: center;
}

@media (max-width: 992px) {
    .ab-t5 .title {
        width: 100%;
    }
}

.ab-t5 .title h2 {
    line-height: 200px;
    font-size: 25px;
    letter-spacing: 5px;
    font-weight: 900;
}

.ab-t5 .ct {
    padding: 15px;
    height: 200px;
    background-color: var(--main-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 576px) {
    .ab-t5 .ct {
        height: fit-content;
    }
}

.ab-t5 .ct p {
    display: block;
    font-size: 15px;
    letter-spacing: 3px;
    line-height: 30px;
}

.ab-t5 .ab-text-nd .img {
    height: 200px;
    width: 200px;
    min-width: 200px;
}

@media (max-width: 992px) {

    .ab-t5 .ab-text-nd .img {
        width: 100%;
    }
}


.ab-t5 .ab-text-nd .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------ ab-t5 end ------ */



/* ---- pdt-t5 ----- */

.pdt-t5 .pdt-box {
    position: relative;
}

.pdt-t5 .pdt-box::after {
    position: absolute;
    color: #fff;
    top: calc(50% - 15px);
    left: 30%;
    display: block;
    width: 40%;
    height: 30px;
    line-height: 30px;
    background-color: var(--main-color);
    content: 'VIEW';
    letter-spacing: 3px;
    text-align: center;
    transition: .4s .2s;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scaleY(0);
}

.pdt-t5 .pdt-box:hover::after {
    transform: scaleY(1);
}

.pdt-t5 .pdt-img {
    height: 270px;
    overflow: hidden;
}

@media(max-width: 992px) and (min-width: 576px) {
    .pdt-t5 .pdt-img {
        height: 220px;
    }
}


.pdt-t5 .pdt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
}

.pdt-t5 .pdt-t {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0 10px;
    height: 50px;
    transition: .5s ease;
}

.pdt-t5 .pdt-box:hover .pdt-t {
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.pdt-t5 .pdt-t h4 {
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

/* ---- pdt-t5 end ----- */

/* ---- news-t5 & news-dt-t5 ---- */

.news-t5 .news-box {
    display: flex;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.news-t5 .news-box .time {
    width: 80px;
    min-width: 80px;
    font-family: 'inter';
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    margin-right: 10px;
}

.news-t5 .news-box .time span {
    color: #fff;
    letter-spacing: 3px;
    text-align: center;
    display: block;
    width: 100%;
}

.news-t5 .news-box .time span:nth-of-type(1) {
    font-size: 15px;
}

.news-t5 .news-box .time span:nth-of-type(2) {
    font-size: 28px;
}

.news-t5 .news-ct {
    margin-right: 10px;
}

.news-t5 .news-ct h3 {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 13px;
    transition: .3s ease;
}

.news-t5 .news-box:hover .news-ct h3 {
    color: var(--main-color);
}

.news-t5 .news-ct p {
    font-size: 15px;
    color: #999;
    transition: .3s ease;
}

.news-t5 .news-box:hover .news-ct p {
    color: var(--basic-color);
}

.news-t5 .news-img {
    height: 80px;
    min-width: 120px;
}

@media (max-width: 576px) {
    .news-t5 .news-box {
        flex-wrap: wrap;
    }

    .news-t5 .news-box .time {
        order: 2;
        width: 65px;
        min-width: 65px;
        height: 70px;
    }

    .news-t5 .news-ct {
        order: 3;
        margin-right: 0;
        width: calc(100% - 75px);
    }

    .news-t5 .news-ct h3 {
        margin-bottom: 5px;
    }

    .news-t5 .news-img {
        order: 1;
        min-width: 100%;
        height: 250px;
        margin-bottom: 10px;
    }
}

.news-t5 .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-dt-t5 .time {
    font-family: 'inter';
    font-weight: 700;
    position: relative;
    display: block;
    padding-left: 10px;
    margin: 20px 0;
    width: 180px;
    color: #fff;
    mix-blend-mode: multiply;
}

.news-dt-t5 .time::after {
    position: absolute;
    width: 80%;
    height: 130%;
    display: block;
    content: '';
    top: -3px;
    left: 0px;
    z-index: -1;
    background-color: var(--main-color);
    opacity: .8;
}

.news-dt-t5 .time::before {
    position: absolute;
    width: 80%;
    height: 130%;
    display: block;
    content: '';
    top: -10px;
    left: 20px;
    background-color: var(--basic-color);
    z-index: -2;
    opacity: .7;
}

.news-dt-t5 .news-dt-title {
    color: var(--main-color);
}

/* ---- news-t5 & news-dt-t5 end ---- */


/* ----case-t5 ( photo-t5 ) & case-dt-t5 ----*/



.case-t5 .case-box {
    position: relative;
    margin-bottom: 15px;
}

.case-t5 .case-img {
    position: relative;
}

.case-t5 .case-img::before {
    position: absolute;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    display: block;
    content: '\2b';
    background-color: #fff;
    bottom: 68px;
    z-index: 1;
    left: calc(50% - 5px);
    transition: .5s ease;
}

.case-t5 .case-box:hover .case-img::before {
    bottom: calc(50% - 12px);
    background-color: var(--main-color);
    color: #fff;
}

.case-t5 .case-ct {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    height: 80px;
    justify-content: center;
    align-items: center;
    transition: .5s ease;
}

.case-t5 .case-box:hover .case-ct {
    height: 50%;
}

.case-t5 .case-ct .title {
    width: 90%;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 3px;
    transition: .3s ease;
}

.case-t5 .case-dc {
    position: absolute;
    top: 100%;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    font-size: 14px;
    color: #c9c9c9;
    letter-spacing: 2px;
}

.case-t5 .case-dc span {
    margin: 5px 10px;
    font-family: 'inter';
}

/* ----case-t4 ( photo-t4 ) & case-dt-t4 end---- */


/* ---- qa-t5 ---- */

.qa-t5 .qa-box {
    margin-bottom: 25px;
}

.qa-t5 .qa-title {
    background-color: var(--basic-color);
    padding: 20px;
    position: relative;
    transition: .3s ease;
}

.qa-t5 .qa-box:hover .qa-title,
.qa-t5 .qa-box.active .qa-title {
    background-color: var(--main-color);
}

.qa-t5 .qa-title h4 {
    letter-spacing: 2px;
    color: #ccc;
    position: relative;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0px;
    transition: .3s ease;
}

.qa-t5 .qa-box:hover .qa-title h4,
.qa-t5 .qa-box.active .qa-title h4 {
    color: #fff;
}

.qa-t5 .qa-title h4::before {
    font-family: "inter";
    font-weight: 400;
    font-size: 22px;
    content: "\51";
}


.qa-t5 .qa-answer {
    padding: 20px;
    line-height: 30px;
    color: var(--basic-color);
    position: relative;
}

.qa-t5 .qa-answer::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    background-color: var(--main-color);
    top: 0;
    opacity: .15;
    z-index: -1;
    left: 0;
}

/* ---- qa-t5 end ---- */


/* ---- dl-t5 ---- */

.dl-t5 .dl-table thead {
    color: #fff;
}

.dl-t5 .dl-table thead th {
    background-color: var(--basic-color);
}

@media (max-width: 576px) {
    .dl-t5 .dl-table thead.mb {
        background-color: #fff;
    }
}

.dl-t5 .dl-table tbody td {
    transition: .3s ease;
    border: none;
    font-size: 15px;
    color: #666;
    border-bottom: 1px solid #eee;
}

.dl-t5 .dl-table tbody tr:hover td {
    background-color: var(--main-color);
    color: #fff;
}

.dl-t5 .dl-table a {
    color: var(--basic-color);
}

.dl-t5 .dl-table tbody tr:hover td::before {
    color: #fff;
}

/* ---- dl-t5 end ---- */

/* ---- contact-t5 ---- */


.contact-t5 .contact-title {
    text-align: center;
    margin-bottom: 30px;
}



.contact-t5 .contact-title h3 {
    letter-spacing: 1.5px;
    color: #fff;
    background-color: var(--main-color);
    padding: 10px 0px;
}


.contact-t5 .contact-info {
    padding: 20px 10px;
    margin-bottom: 20px;
    text-align: center;
    background-color: #0000000a;
}

.contact-t5 .contact-info .cont-icon {
    display: inline-block;
    line-height: 1;
    color: var(--main-color);
    font-size: 50px;
}

.contact-t5 .contact-info h5 {
    margin-top: 20px;
    margin-bottom: 0;
    color: var(--main-color);
    font-size: 20px;
    font-weight: 700;
}

.contact-t5 .contact-info p,
.contact-t5 .contact-info a {
    margin: 20px auto 0;
    letter-spacing: 1px;
    color: var(--basic-color);
    font-family: 'inter';
}



/* ---- contact-t5 end---- */



/* ---- main-t5 ---- */

.main-t5 .main-title {
    margin-bottom: 15px;
    padding-bottom: 15px;
}


.main-t5 .main-list ul li a {
    letter-spacing: 3px;
    text-align: center;
    display: block;
    padding: 10px;
    width: 100%;
    height: 100%;
    color: #fff;
    transition: .3s ease;
    background-color: var(--basic-color);
    position: relative;
}

.main-t5 .main-list ul li a:hover {
    background-color: var(--main-color);
}

/* ---- main-t5 end ---- */



/* ----------------------------------------------------------------------------------------------------------------------------------------------------------
SAAS Theme t6
header > index > category ( 上選單 ) + sidenav ( 側選單 ) >
ab > pdt > news > case + photo > qa > dl > contact > form
----------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*---- header-t6 ----- */

header.header-t6 {
    height: 80px;
    background: #fff;
}

.header-t6 .fixed-top {
    padding-right: 0px !important;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(199, 199, 199, 0.3);
}

.header-t6 .logo {
    width: 200px;
    height: 80px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
}

.header-t6 .logo img {
    width: 180px;
}

.header-t6 .nav-menu {
    margin: 0;
    padding: 0;
    height: 100%;
}

@media(min-width: 992px) {
    .header-t6 .nav-menu ul {
        display: flex;
        margin: 0;
        padding: 0;
    }
}

.header-t6 .nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    list-style: none;
    height: 80px;
}

.header-t6 .nav-menu a {
    display: block;
    position: relative;
    color: var(--basic-color);
    padding: 0 15px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 900;
}

.header-t6 .nav-menu>ul>li {
    position: relative;
    margin: 0px 5px;
}

.header-t6 .nav-menu>ul>li::after {
    position: absolute;
    width: 100%;
    height: 50%;
    top: calc(50% - 20px);
    left: 0;
    bottom: auto;
    right: auto;
    border-radius: 30px;
    content: '';
    display: block;
    background: var(--main-color);
    z-index: -1;
    transition: .3s ease;
    opacity: 0;
    transform: rotate3d(0, 1, 0, 140deg);
    /* transform-origin: bottom; */
}

.header-t6 .nav-menu>ul>li.active::after,
.header-t6 .nav-menu>ul>li:hover:after {
    transform: rotate3d(0, 0, 0, 0deg);
    opacity: 1;
    transition: .5s ease;
}

.header-t6 .nav-menu>ul>li>a {
    display: block;
    position: relative;
    color: var(--basic-color);
    height: 100%;
    padding: 0 8px;
    transition: 0.3s;
    font-size: 16px;
    line-height: 80px;
    font-weight: 700;
}

.header-t6 .nav-menu>ul>li:hover>a,
.header-t6 .nav-menu>ul>li.active>a {
    color: #fff;
}

.header-t6 .nav-menu .drop-down ul {
    display: none;
    position: absolute;
    height: auto;
    left: -14px;
    top: 100%;
    z-index: 99;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.066);
    transition: ease all 0.3s;
    list-style: none;
    border-radius: 20px;
    background-color: #fff;
}


.header-t6 .nav-menu .drop-down li {
    min-width: 140px;
    text-align: center;
    position: relative;
}

.header-t6 .nav-menu .drop-down ul a {
    display: block;
    height: 100%;
    width: 100%;
    font-size: 16px;
    line-height: 50px;
    font-weight: 500;
    text-transform: none;
    color: var(--basic-color);
}

.header-t6 .nav-menu .drop-down ul .active>a,
.header-t6 .nav-menu .drop-down ul li:hover>a {
    color: var(--main-color);
}

.header-t6 .nav-menu .drop-down>a:after {
    content: "\eac8";
    font-family: IcoFont;
    padding-left: 5px;
}

.header-t6 .nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.header-t6 .nav-menu .drop-down .drop-down:hover>ul {
    display: block;
    top: 0;
    left: 100%;
    animation-name: toLeft;
    animation-duration: .5s;
    animation-delay: 0ms;
}

@keyframes toLeft {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0px);
        opacity: 1;
    }
}


.header-t6 .nav-menu .drop-down .drop-down>a:after {
    content: "\eaca";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .header-t6 .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .header-t6 .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }

    .header-t6 .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}

/* 選單hover效果 */
.header-t6 .nav-menu>ul>.drop-down:hover>ul {
    display: block;
    animation-name: header_t6;
    animation-duration: .5s;
    animation-delay: 0ms;
    animation-timing-function: ease;
}


@keyframes header_t6 {
    from {
        transform: rotateY(90deg);
        opacity: 0;
    }

    to {
        transform: rotateX(0deg);
        opacity: 1;
    }
}


/*---- header-t6 end ----- */

/* ---- carousel-t6 ---- */

.carousel-t6 .carousel-item img {
    border-radius: 0 0 50px 50px;
}

/* ---- carousel-t6 end ---- */


/*---- index-t1 end ----- */

.circle0 {
    fill: #C9CACA;
}

.circle1 {
    fill: var(--main-color);
}

.circle2 {
    fill: var(--basic-color);
}

.circle-t6 svg {
    width: 50px;
    display: block;
    margin: 0 auto;
}

.index-ab-t6 .title {
    background-color: var(--basic-color);
    border-radius: 30px;
    text-align: center;
    padding: 10px 0px;
    width: 200px;
    float: right;
}



.index-ab-t6 .title h2 {
    color: #fff;
    letter-spacing: 5px;
    font-size: 25px;
    font-weight: 700;
}

.index-ab-t6 .ab-imgbox {
    display: flex;
    flex-wrap: nowrap;
}

.index-ab-t6 .ab-imgbox .ab-img {
    height: 250px;
    overflow: hidden;
}

.index-ab-t6 .ab-imgbox .ab-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-ab-t6 .ab-imgbox .ab-img:nth-of-type(1) {
    width: 60%;
    border-radius: 0 0 0 50px;
    margin-right: 10px;
}

.index-ab-t6 .ab-imgbox .ab-img:nth-of-type(2) {
    width: 40%;
    border-radius: 0 50px 0 0px;
}

.index-ab-t6 .ab-text {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.index-ab-t6 .ab-text p {
    -webkit-line-clamp: 5;
    line-height: 40px;
    color: var(--basic-color);
}


.index-news-t6 .title {
    background-color: var(--basic-color);
    border-radius: 30px;
    text-align: center;
    padding: 10px 0px;
    width: 200px;
}



.index-news-t6 .title h2 {
    color: #fff;
    letter-spacing: 5px;
    font-size: 25px;
    font-weight: 700;
}

.index-news-t6 .news-box {
    margin-bottom: 30px;
}

.index-news-t6 .news-box-top {
    display: flex;
    border-radius: 30px;
    box-shadow: 5px 0px 15px -5px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.index-news-t6 .time {
    width: 80px;
    min-width: 80px;
    font-weight: 700;
    letter-spacing: 3px;
    background-color: #ddd;
    color: #fff;
    text-align: center;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    position: relative;
    margin-right: 50px;
    transition: .3s ease;
}

.index-news-t6 .time::after {
    position: absolute;
    width: 150%;
    height: 100%;
    display: block;
    content: '';
    top: 0;
    left: 0;
    background-color: #999;
    border-radius: 30px;
    z-index: -1;
    transition: .3s ease;
}

.index-news-t6 .news-box:hover .time::after {
    background-color: var(--basic-color);
}

.index-news-t6 .news-box:hover .time {
    background-color: var(--main-color);
    box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.5);
}

.index-news-t6 .news-title {
    height: 30px;
    padding-right: 10px;
}

.index-news-t6 .news-title h5 {
    line-height: 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    transition: .3s ease;
    color: var(--basic-color);
}

.index-news-t6 .news-box:hover .news-title h5 {
    color: var(--main-color);
}

.index-news-t6 .news-ct {
    width: calc(100% - 130px);
    margin-left: auto;
    color: #999;
    transition: .3s ease;
}

@media (max-width: 576px) {
    .index-news-t6 .news-ct {
        width: 100%;
    }
}

.index-news-t6 .news-box:hover .news-ct {
    color: var(--basic-color);
}


.index-pdt-t6 .title {
    margin-bottom: 25px;
}

.index-pdt-t6 .title h2 {
    font-weight: 900;
    letter-spacing: 4px;
    font-size: 25px;
    color: var(--main-color);
}

.index-pdt-t6 .swiper-slide {
    padding: 30px 0px;
}

@media(max-width: 992px) {
    .index-pdt-t6 .swiper {
        padding: 0px 15px;
    }
}

.index-pdt-t6 .pdt-box {
    position: relative;
    height: 300px;
    border-radius: 30px;
    overflow: hidden;
    transition: .3s ease;
    box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.15);
}

.index-pdt-t6 .pdt-box:hover {
    transform: translateY(-5px);
}

.index-pdt-t6 .pdt-img {
    height: 100%;
    position: relative;
}

.index-pdt-t6 .pdt-img::after {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    top: 0;
    left: 0;
    transition: .3s ease;
    opacity: .1;
    background-color: var(--main-color);
}

.index-pdt-t6 .pdt-box:hover .pdt-img::after {
    background: transparent;
}

.index-pdt-t6 .pdt-t {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 0 15px;
    transition: .3s ease;
    background-color: #fff;
}

.index-pdt-t6 .pdt-box:hover .pdt-t {
    background-color: rgba(255, 255, 255, 0.85);
}

.index-pdt-t6 .pdt-t h4 {
    font-size: 16px;
    color: #fff;
    letter-spacing: 4px;
    color: var(--main-color);
}

/*---- index-t6 end ----- */


/* ----- category-t6 ---- */

.category-t6 li {
    height: 40px;
    line-height: 40px;
    border-radius: 30px;
    transition: .3s ease;
    position: relative;
    background-color: #f9f9f9;
}

@media (max-width: 992px) {
    .category-t6 li {
        margin-bottom: 5px;
    }
}

.category-t6 li.active,
.category-t6 li:hover {
    background-color: var(--main-color);
    cursor: pointer;
}

.category-t6 li a {
    text-align: center;
    display: block;
    color: #999;
    transition: .3s ease;
}

.category-t6 li.active a,
.category-t6 li:hover a {
    color: #fff;
}

/* ----- category-t6 end ---- */


/* ----- sidenav-t6 ---- */
.sidenav-t6>li>a {
    background-color: #f3f3f3;
    border-radius: 50px;
    padding-left: 25px;
    color: var(--basic-color);
}

.sidenav-t6>li:hover>a,
.sidenav-t6>li.active>a {
    background-color: var(--main-color);
    color: #fff;
}


.sidenav-t6>li>a::after {
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    content: "\f054";
    float: right;
    margin-right: 15px;
    transition: .3s ease;
}

.sidenav-t6>li:hover>a::after,
.sidenav-t6>li.active>a::after {
    transform: rotate(90deg);
}

.sidenav-t6.unicon>li:hover>a::after,
.sidenav-t6.unicon>li.active>a::after {
    transform: rotate(0deg) translateX(5px);
}

.sidenav-t6>li ul {
    margin-top: 5px;
    margin-left: 20px;
}

.sidenav-t6>li ul li a {
    border-radius: 50px;
    letter-spacing: 2px;
    color: #999;
    background-color: #f9f9f9;
    padding: 15px 0px 15px 20px;
}

.sidenav-t6>li ul li:hover a,
.sidenav-t6>li ul li.active a {
    color: #fff;
    background-color: var(--basic-color);
}

.sidenav-t6>li ul li a::before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    content: "\f111";
    margin-right: 5px;
    color: #ccc;
    transition: .3s ease;
}

.sidenav-t6>li ul li:hover a::before,
.sidenav-t6>li ul li.active a::before {
    color: var(--main-color);
}

/* ----- sidenav-t6 end ---- */


/* ---- pdt-t6 ----- */




.pdt-t6 .pdt-box {
    position: relative;
    height: 300px;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0px 0px 10px -5px rgb(0 0 0 / 85%);
    transition: .3s ease;
    margin-bottom: 0px;
}

.pdt-t6 .pdt-box:hover {
    transform: translateY(-5px);
}

.pdt-t6 .pdt-img {
    height: 100%;
    position: relative;
}

.pdt-t6 .pdt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdt-t6 .pdt-img::after {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    bottom: 0;
    left: 0;
    transition: .3s ease 0s;
    opacity: 0.1;
    background-color: var(--main-color);
}

.pdt-t6 .pdt-box:hover .pdt-img::after {
    background: transparent;
}

.pdt-t6 .pdt-d {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 0 15px;
    transition: .3s ease;
    background-color: #fff;
}

.pdt-t6 .pdt-box:hover .pdt-d {
    background-color: rgba(255, 255, 255, 0.85);
}

.pdt-t6 .pdt-d h3 {
        text-align: center;
    font-size: 18px;
    color: var(--main-color);
    letter-spacing: 2px;
    transition: .3s ease;
    font-weight: 600;
}

/* ---- pdt-t6 end ----- */




/* ---- news-t6 & news-de-t6  ---- */


.news-t6 .title {
    background-color: var(--basic-color);
    border-radius: 30px;
    text-align: center;
    padding: 10px 0px;
    width: 200px;
}



.news-t6 .title h2 {
    color: #fff;
    letter-spacing: 5px;
    font-size: 25px;
    font-weight: 700;
}

.news-t6 .news-box {
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.news-t6 .news-box-top {
    display: flex;
    border-radius: 30px;
    box-shadow: 5px 0px 15px -5px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.news-t6 .time {
    width: 80px;
    min-width: 80px;
    font-weight: 700;
    letter-spacing: 3px;
    background-color: #ddd;
    color: #fff;
    text-align: center;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    position: relative;
    margin-right: 50px;
    transition: .3s ease;
}

.news-t6 .time::after {
    position: absolute;
    width: 150%;
    height: 100%;
    display: block;
    content: '';
    top: 0;
    left: 0;
    background-color: #999;
    border-radius: 30px;
    z-index: -1;
    transition: .3s ease;
}

.news-t6 .news-box:hover .time {
    background-color: var(--main-color);
    box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.5);
}

.news-t6 .news-box:hover .time::after {
    background-color: var(--basic-color);
}

.news-t6 .news-title {
    height: 30px;
    padding-right: 10px;
}

.news-t6 .news-title h5 {
    line-height: 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    transition: .3s ease;
    color: var(--basic-color);
}

.news-t6 .news-box:hover .news-title h5 {
    color: var(--main-color);
}

.news-t6 .news-ct {
    width: calc(100% - 130px);
    margin-left: auto;
    color: #999;
    transition: .3s ease;
}

.news-t6 .news-ct p {
    -webkit-line-clamp: 3;
}

@media (max-width: 576px) {
    .news-t6 .news-ct {
        width: 100%;
    }
}

.news-t6 .news-box:hover .news-ct {
    color: var(--basic-color);
}

.news-dt-t6 .time {
    background-color: var(--main-color);
    padding: 8px 0px;
    text-align: center;
    color: #fff;
    font-family: 'inter';
    font-size: 15px;
    border-radius: 50px;
    margin-bottom: 10px;
    display: block;
    width: 150px;
}

/* ---- news-t6 & news-de-t6 end ---- */


/* ----case-t6 ( photo-t1 ) & case-dt-t1 ----*/
.case-t6 .case-box {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px -5px rgba(0, 0, 0, .5);
    transition: .3s ease;
}

.case-t6 .case-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .1);

}

.case-t6 .case-box .case-img {
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

.case-t6 .case-img::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    opacity: .2;
    background-color: var(--main-color);
    transition: .3s ease;
}

.case-t6 .case-box:hover .case-img::after {
    opacity: 0;
}

.case-t6 .case-ct {
    height: 90px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.case-t6 .case-ct .title {
    font-size: 16px;
    letter-spacing: 2px;
    text-align: center;
    line-height: 25px;
    color: var(--basic-color);
    padding: 0 20px;
    border-radius: 0 0 30px 30px;
    opacity: 1;
    transition: .3 ease;
}

.case-t6 .case-box:hover .case-ct .title {
    color: var(--main-color);
}

.case-t6 .case-dc {
    font-size: 15px;
    color: #999;
    letter-spacing: 2px;
}

.case-t6 .case-dc span {
    margin: 0 5px;
}

.case-dt-t6 .gallery-item img {
    border-radius: 15px;
    overflow: hidden;
}

/* ----case-t6 ( photo-t1 ) & case-dt-t1 end---- */


/* ---- qa ---- */

.qa-t6 .qa-box {
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.qa-t6 h4 {
    font-size: 18px;
    letter-spacing: 3px;
    line-height: 30px;
    font-weight: 500;
    color: var(--basic-color);
    padding: 0 15px;
    transition: .3s ease;
}

.qa-t6 h4::before {
    font-family: "inter";
    font-weight: 300;
    content: "\51";
    margin-top: -5px;
}

.qa-t6 .qa-title {
    background-color: #e9e9e9;
    border-radius: 100px;
    position: relative;
}

.qa-t6 .qa-box:hover .qa-title,
.qa-t6 .qa-box.active .qa-title {
    background-color: var(--main-color);
}

.qa-t6 .qa-title::after {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    bottom: -20px;
    left: calc(50% - 15px);
    border-radius: 50px;
    text-align: center;
    color: #fff;
    display: block;
    content: '\f078';
    font-family: 'Font Awesome 6 Pro';
    background-color: var(--basic-color);
    transition: .3s ease .1s;
    transform: scale(0);
}

.qa-t6 .qa-box.active .qa-title::after,
.qa-t6 .qa-box:hover .qa-title::after {
    transform: scale(1);
}

.qa-t6 .qa-box:hover .qa-title h4,
.qa-t6 .qa-box.active .qa-title h4 {
    color: #fff;
}

.qa-t6 .qa-answer {
    line-height: 30px;
    color: #666;
    background-color: #f7f7f7;
    border-radius: 50px;
    padding: 30px;
    margin-top: 10px;
}


/* ---- qa-t6 end ---- */



/* ---- dl-t6 ---- */
.dl-t6 .dl-table {
    border-collapse: separate;
    border-spacing: 0px;
    border-radius: 15px;
    border: 1px solid transparent;
    overflow: hidden;
}

.dl-t6 .dl-table thead {
    background-color: var(--main-color);
    color: #fff;
}

.dl-t6 .dl-table th {
    border: none;
}

.dl-t6 .dl-table td {
    background-color: #f9f9f9;
    border: none;
    border-bottom: 1px solid #eee;
}

.dl-t6 .dl-table td:not(:last-child) {
    border-right: 1px solid #eee;
}

@media (max-width: 576px) {
    .dl-t6 .dl-table tbody td:last-child {
        border-bottom: 1px solid var(--basic-color);
    }
}

/* ---- dl-t6 end ---- */

/* ---- contact-t6 ---- */


.contact-t6 .contact-title {
    margin-bottom: 20px;
}

.contact-t6 .contact-title h3 {
    padding: 8px 20px;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 5px;
    text-align: center;
    color: #fff;
    background-color: var(--main-color);
    border-radius: 30px;
    width: fit-content;
    position: relative;
}

.contact-t6 .contact-title h3::after {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background-color: var(--basic-color);
    display: block;
    content: '';
    top: 0;
    left: 50%;
    z-index: -1;
}


.contact-t6 .contact-icon {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.contact-t6 .info-title {
    font-weight: 900;
    color: var(--main-color);
    margin-right: 10px;
    background-color: #f3f3f3;
    border-radius: 30px;
    text-align: center;
    padding: 2px 10px;
    display: inline-block;
}

.contact-t6 .info-content {
    letter-spacing: 1.5px;
}


/* ---- contact-t6 end---- */

/* ---- main-t6 ---- */
.main-t6 .main-title h3 {
    color: #fff;
    background-color: var(--basic-color);
    padding: 8px 15px;
    width: fit-content;
    text-align: center;
    border-radius: 30px;
    font-size: 20px;
}

.main-t6 .main-list ul li a {
    color: #666;
    display: block;
    padding: 8px 0px;
    text-align: center;
    background-color: #eee;
    transition: .3s ease;
    border-radius: 30px;
}

.main-t6 .main-list ul li a:hover {
    background-color: var(--main-color);
    color: #fff;
}

/* ---- main-t6 end ---- */




/* ---- footer-t6 ---- */

.footer-t6 {
    background-color: #fafafa;
    padding: 30px 0px 0px 0px;
}

.footer-t6 h2 {
    font-size: 45px;
    color: var(--vice-color);
}

.footer-t6 .top {
    justify-content: center;
    padding-bottom: 30px;
}

.footer-t6 .top img {
    width: 250px;

}

.footer-t6 .top div {
    margin-bottom: 15px;
}

.footer-t6 .top div:not(:last-child) {
    border-right: 1px solid #eee;
}

@media (max-width: 992px) {
    .footer-t6 .top div:not(:last-child) {
        border-right: none;
    }
}

.footer-t6 i {
    font-size: 42px;
    color: var(--main-color);
}

.footer-t6 p {
    letter-spacing: 2px;
    color: var(--basic-color);
    font-size: 15px;
}



.footer-t6 .copyright {
    padding: 5px 0px;
    background-color: var(--main-color);
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;

}


/* ---- footer-t6 end ---- */
.title .tw{
    color: #148ec9;
    font-weight: 600;
    font-size: 30px;
}
.title .en{
    font-weight: 600;
    color: #9fbf3e;
}
.score li{
    border-left: 3px solid var(--main-color);
    padding: 10px;
    /* border-radius: 5px; */
    margin-bottom: 10px;
    background: #fafafa;
}
.score li a{
    display: block;
    width: 100%;
}
.score li:hover{
    background: var(--main-color);
}
.score li:hover a{
    color: #fff;
}
.score-table td{
    padding: 10px;
}
.score-table a{
    color: var(--main-color);
}
.index-box{
        padding: 10px 20px;
    box-shadow: 5px 5px 0px 0px #9fbf3e;
    border-radius: 25px;
    border: 1px solid #9fbf3e;
    min-height: 270.8px;
    margin-bottom: 20px;
        transition: .3s ease;
}
.index-box:hover{
    box-shadow: none;
    border: 1px solid #9fbf3e;
    transition: .3s ease .1s;
    transform: translateY(4px);
}
.index-box h4{
        position: relative;
    font-size: 24px;
    font-weight: 600;
    margin-top: 18px;
    padding-bottom: 12px;
    margin-bottom: 20px;
}
.index-box h4:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    height: 2px;
    width: 80px;
    background-color: var(--main-color);
}
@media (max-width: 992px) {
    .index-box{
    min-height: auto;
}
}