:root {
    --main-color: #2c5340;
    --sub-color: #54AD8F;
    --grey-color: #EFEFEF;
    --font-color: #333333;
}

* {
    font-family: "Space Grotesk", sans-serif !important;
}

body,
div,
ul,
li,
section {
    box-sizing: border-box;
}

body {
    position: relative;
    background-color: rgb(247, 247, 245);
}

select option:hover {
    background-color: #ffcc00; /* 你希望的颜色 */
}

.flex {
    display: flex;
}

.flex-col {
    display: flex;
    flex-flow: column;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-align-center {
    display: flex;
    align-items: center;
}

.flex-justify-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-justify-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* 针对 Webkit 浏览器 (如 Chrome, Safari) */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* 针对 Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.split-line {
    line-height: 62px;
}

.pbmit-entry-content img{
	max-width:100%; height:auto;
}



/* 頭部-start */
.header.pc {
    display: flex;
}

.header.mb,
.mb-curtain,
.nav-modal {
    display: none;
}

.header {
    /* position: fixed; */
    top: 0;
    left: 0;
    right: 0;
    /* background-image: url(/static/image/hd-bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto; */
    z-index: 999;
}

.header .header-container .hd-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.header-container {
    width: 100%;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-container .left-wrapper {
    display: flex;
    align-items: center;
}

.header-container .left-wrapper .logo-img {
    height: 100px;
    cursor: pointer;
}

.header-container .language-wrapper {
    display: flex;
    align-items: center;
    margin-left: 26px;
}

.header-container .language-wrapper .language-btn {
    font-family: "Titillium Web", sans-serif;
    font-size: 16px;
    color: var(--font-color);
    line-height: 23px;
    cursor: pointer;
    padding: 0 4px;
}

.header-container .language-wrapper .divider-line {
    width: 1px;
    height: 23px;
    background-color: var(--font-color);
    margin: 0 10px;
    margin: 0 4px;
}

.header-container .right-wrapper .search-wrapper {
    height: 40px;
    border-radius: 20px;
    background-color: rgba(146, 99, 37, 0.34);
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.header-container .right-wrapper .search-wrapper input {
    color: var(--font-color);
    width: 80px;
    background-color: rgba(146, 99, 37, 0);
    border: none;
    flex: 1;
    padding-right: 4px;
}

.search-input::placeholder {
    color: var(--font-color);
    font-size: 14px;
    font-weight: 300;
}

.header-container .btn-wrapper a {
    padding: 0;
}

.header-container .search-icon {
    width: 32px;
    cursor: pointer;
}

.pc-fix-head {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: top 0.3s;
    /* padding-left: 66px; */
    box-sizing: border-box;
    /* display: flex;
	align-items: center;
	justify-content: space-between; */
    backdrop-filter: blur(5px);
}

.op {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.pc-fix-head:hover {
    background-color: #ffffff;
}

.hidden {
    top: -100%;
}

.onTop {
    background-color: #ffffff;
}

.pc-fix-head .header-container {
    flex-flow: column;
    background-color: #ffffff;
    box-sizing: border-box !important;
}

.pc-fix-head .header-container {
    padding: 12px 39px;
}

.pc-fix-head .header-container .header-line {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pc-fix-head .header-container .header-line .right-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
}

.pc-fix-head .header-container .nav-section {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pc-fix-head .search-btn {
    background: none;
    border: none;
    line-height: normal;
}

.nav-modal .nav-list {
    background-color: #ffffff;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
    row-gap: 10px;
}

.nav-modal .nav-list .nav-item {
    display: flex;
    align-items: center;
}

.nav-modal .nav-list .nav-item .nav-item-txt {
    font-family: PingFang HK, PingFang HK;
    font-size: 20px;
    color: var(--font-color);
    line-height: 23px;
}

.inner-page .header.pc {
    background-color: #ffffff;
}

.inner-page .header .header-container {
    padding: 65px 70px;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 83, 64, 0.6);
    display: none;
    top: -100%;
    z-index: 10000;
    transition: top 0.3s ease;
}

.search-overlay.active {
    top: 0;
}

.search-modal {
    position: fixed;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 32px;
    display: none;
    z-index: 10001;
    border-radius: 16px;
    top: -100%;
    transition: top 0.5s ease;
}

.search-modal.active {
    top: 32%;
}

.search-modal .search-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
}

.search-modal .search-wrapper .input-wrapper {
    width: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid #e6e6e6;
    border-radius: 18px;
}

.search-modal .search-wrapper input {
    width: 100%;
    height: 36px;
    border-radius: 8px;
    padding: 0 8px;
    border: none;
}

.search-modal .search-wrapper .search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    padding: 8px;
    border-radius: 16px;
    margin-left: 12px;
    min-width: 62px;
    cursor: pointer;
}

.search-modal .search-wrapper .search-btn .btn-txt {
    color: #ffffff;
    font-size: 16px;
}

.search-modal .search-wrapper .search-btn .right-arrow {
    width: 20px;
    margin-left: 8px;
}

.search-modal .search-wrapper .search-btn .btn-txt,
.search-modal .search-wrapper .search-btn .right-arrow.white {
    display: block;
    margin-left: 0;
}

.search-modal .search-wrapper .search-btn .right-arrow {
    margin-right: 4px;
}

.pbmit-title-bar-wrapper {
    height: calc(100vh - 124px);
    background-image: url(../image/pic-6.jpg);
    border-radius: 0 0 50px 50px;
    margin: 124px 0 0 0;
}

.pbmit-title-bar-content {
    height: calc(100vh - 124px);
}

.pbmit-title-bar-wrapper .pbmit-tbar-title {
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}

/* 頭部-end */

/* 內容-start */
.op-bg {
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
}

.nav-bottom-bg {
    width: 100%;
    opacity: 1;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 1;
}


.my-section {
    padding: 100px 0;
    position: relative;
}

.my-section .c-bg {
    position: absolute;
    z-index: -1;
}

.my-section .c-bg-1 {
    top: 0;
    left: 0;
    width: 58%;
}

.my-section .c-bg-2 {
    bottom: 0;
    right: 0%;
    width: 38%;
}

.my-container {
    width: 1280px;
    margin: 0 auto;
}

.my-container-title {
    height: 200px;
    position: relative;
    margin-bottom: 78px;
}

.my-container-title .title-txt-img {
    height: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.my-container-title .title-icon {
    height: 96px;
    position: absolute;
    top: 25%;
    left: 63%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.my-container-title.my-container-title:hover .title-icon {
    animation: bounce 0.8s ease-in-out;
    transform-origin: bottom center;
    will-change: transform;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, -50%);
    }

    25% {
        transform: translate(-50%, calc(-50% - 10px));
    }

    50% {
        transform: translate(-50%, -50%);
    }

    75% {
        transform: translate(-50%, calc(-50% - 5px));
    }
}

.my-container-title .my-title-txt {
    color: #52BB73;
    font-size: 64px;
    font-weight: bold;
}

.my-wrapper .txt {
    font-family: PingFang HK, PingFang HK;
    font-weight: 400;
    font-size: 25px;
    color: var(--font-color);
    line-height: 45px;
    text-indent: 2em;
}

.bold {
    font-weight: bold !important;
}

.hd-big-img {
    width: 100%;
    /* height: 596px; */
    margin-top: 105px;
    border-radius: 0 0 100px 100px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.hd-img-section .hd-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: PingFang HK, PingFang HK;
    font-weight: 300;
    font-size: 80px;
    color: #980019;
    line-height: 120px;
    padding-top: 10px;
}

.hd-img-section .hd-title .red-spot {
    height: 50px;
    margin-right: 24px;
}

.hd-img-section {
    background-image: url(/static/image/hd-big-bg.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 20px;
}

/* 導覽列-start */
.nav-section .nav-bg {
    width: 100%;
    background-color: #ffffff;
}

.pc-fix-head .nav-section .nav-bg {
    height: 100%;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0);
}

.nav-section .nav-bg-img {
    width: 100%;
}

.nav-section .nav-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 0;
}

.pc-fix-head .nav-section .nav-container {
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
}

.pc-fix-head .nav-section .nav-container .nav-item-10 {
    display: flex;
    align-items: center;
}

.pc-fix-head .nav-section .nav-container .nav-item-11 {
    margin-left: 12px;
}

.nav-section .nav-item {
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    cursor: default;
    position: relative;
    margin-left: 16px;
    margin-right: 16px;
}

.nav-section .nav-item.has-children {
    position: relative;
    padding-right: 18px;
}

.nav-section .nav-item.has-children .down-arrow {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(0deg);
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
}

.nav-section .nav-item.has-children .down-arrow.black {
    opacity: 1;
}

.nav-section .nav-item.has-children .down-arrow.green {
    opacity: 0;
}

.nav-section .nav-item.has-children:hover .down-arrow.black {
    opacity: 0;
    transform: translateY(-50%) rotate(180deg);
}

.nav-section .nav-item.has-children:hover .down-arrow.green {
    opacity: 1;
    transform: translateY(-50%) rotate(180deg);
}

.nav-section .nav-item.has-children .layui-nav-child {
    display: none;
    min-width: 250px;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    height: max-content;
    padding: 18px 0;
    background-color: #ffffff;
    z-index: 999;
    border-radius: 8px;
    border-top: 3px solid var(--pbmit-global-color);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.nav-section .nav-item.has-children .layui-nav-child .nav-item-txt {
    line-height: 1.4;
    padding: 9px 18px;
}

.layui-nav-child .layui-nav-item .nav-item-txt {
    position: relative;
    transition: margin-left 0.3s ease-in-out;
}

.layui-nav-child .layui-nav-item .nav-item-txt::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    width: 6px;
    height: 2px;
    background-color: var(--font-color);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;

}

.layui-nav-child .layui-nav-item:hover .nav-item-txt {
    margin-left: 8px;
}

.layui-nav-child .layui-nav-item:hover .nav-item-txt::before {
    opacity: 1;
}

.nav-section .nav-item.has-children:hover .layui-nav-child {
    display: block;
}

.nav-section .nav-item.active div {
    color: var(--main-color);
}

.nav-section .nav-item.active .layui-nav-child .nav-item-txt {
    color: var(--font-color);
}

.nav-section .nav-item.active .layui-nav-item.active .nav-item-txt {
    color: var(--main-color);
    margin-left: 8px;
}

.nav-section .nav-item.active .layui-nav-item.active .nav-item-txt::before {
    opacity: 1;
    background-color: var(--main-color);
}

.nav-section .nav-item .nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 6px;
}

.nav-section .nav-item .nav-icon path {
    fill: var(--font-color);
}

.nav-section .nav-item .nav-item-txt {
    font-size: 16px;
    color: var(--font-color);
    font-weight: bold;
    font-family: "Titillium Web", sans-serif;
    font-size: 16px;
    letter-spacing: normal;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-section .nav-item .nav-item-txt:hover {
    color: var(--main-color);
}

.nav-section .nav-i-container {
    /* position: absolute; */
    top: calc(100% + 12px);
    /* left: 50%;  */
    /* transform: translateX(-50%); */
    border: none;
    padding: 20px 20px 8px 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 0 0 34px 34px;
    /* z-index: 999; */
    /* display: none; */
}

.index-nav-section .nav-i-container {
    bottom: calc(100% + 12px);
    top: auto;
    border-radius: 34px 34px 0 0;
}

.nav-section .nav-item:hover .nav-i-container {
    display: block;
}

.nav-section .nav-i-container.nav-i-1 {
    background-color: #950119;
}

.nav-section .nav-i-container.nav-i-2 {
    background-color: #E73828;
}

.nav-section .nav-i-container.nav-i-3 {
    background-color: #FF7538;
}

.nav-section .nav-i-container.nav-i-4 {
    background-color: #F29600;
}

.nav-section .nav-i-container.nav-i-5 {
    background-color: #FFBE1B;
}

.nav-section .nav-i-container.nav-i-6 {
    background-color: #0A5F25;
}

.nav-section .nav-i-container.nav-i-7 {
    background-color: #009730;
}

.nav-section .nav-i-container.nav-i-8 {
    background-color: #33B0FA;
}

.nav-section .nav-i-container.nav-i-9 {
    background-color: #0080CB;
    /* left: auto; */
}

.nav-section .nav-item .nav-i-item {
    font-family: PingFang HK, PingFang HK;
    font-weight: 300;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 28px;
    padding-bottom: 12px;
    width: max-content;
    position: relative;
}

.nav-section .nav-item .my-nav-i:hover,
.nav-section .nav-item .my-nav-i:hover a {
    background-color: transparent;
}

.nav-section .nav-item .nav-i-item:hover:after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #FFFFFF;
}

.layui-nav-bar {
    display: none !important;
}

/* 導覽列-end */

/* 內容-end */

/* 底部-start */
#footerContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    border-top: 1px solid #C6C6C6;
    position: relative;
    border-radius: 50px 50px 0 0;

    background-image: url(/static/image/bg-1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ft-op-bg {
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    border-radius: 50px 50px 0 0;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
}

#mobileFooter {
    display: none;
}

#footerContainer .footer-container {
    width: 1280px;
    padding: 60px 0;
    z-index: 1;
}

#footerContainer .footer-container .top-wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
    z-index: 1;
}

#footerContainer .footer-container .f-col {
    display: flex;
    flex-flow: column;
    padding-left: 84px;
    z-index: 1;
}

#footerContainer .footer-container .f-col .f-nav-list .f-nav a {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: 400;
    font-size: 16px;
    color: var(--grey-color);
    line-height: 16px;
    position: relative;
}

#footerContainer .footer-container .f-col .f-nav-list .f-nav a:hover {
    color: var(--sub-color);
}

#footerContainer .footer-container .f-col.f-col-1 {
    max-width: 304px;
}

#footerContainer .footer-container .f-col.f-col-3 {
    padding-left: 48px;
}

#footerContainer .footer-container .f-col.f-col-4 {
    width: 306px;
}

#footerContainer .footer-container .f-col.f-col-5 {
    width: 310px;
}

#footerContainer .footer-container .f-col:first-child {
    padding-left: 0;
}

#footerContainer .footer-container .f-col .logo-wrapper {
    width: 272px;
    height: 272px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 136px;
    margin-bottom: 24px;
}

#footerContainer .footer-container .f-col .logo-big-icon {
    width: 236px;
    margin-bottom: 16px;
    z-index: 1;
}

#footerContainer .footer-container .f-col .f-title {
    font-family: "Titillium Web", sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: var(--grey-color);
    line-height: 21px;
    padding-bottom: 34px;

    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

#footerContainer .footer-container .f-col .t-title {
    font-weight: bold;
    font-size: 22px;
    color: #ffffff;
    line-height: 26px;
    padding-bottom: 24px;
}

#footerContainer .footer-container .f-col .t-detail a {
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--grey-color);
    line-height: 28px;
    text-align: left;
    padding-bottom: 34px;
}

#footerContainer .footer-container .f-col .t-detail.email {
    padding-bottom: 0;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 34px;
}

#footerContainer .footer-container .f-col .t-detail.mobile {
    font-family: "Titillium Web", sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: var(--font-color);
    line-height: 20px;
    padding-bottom: 5px;
}

#footerContainer .footer-container .f-col .t-detail.mobile-tip {
    padding-bottom: 0;
}

#footerContainer .footer-container .f-col .f-nav-list {
    display: flex;
    flex-flow: column;
}

#footerContainer .footer-container .details {
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    line-height: 1.875;
    font-weight: 400;
    word-break: break-word;
}

#footerContainer .footer-container .f-col .f-nav-list .f-nav {
    color: var(--grey-color);
    margin-bottom: 22px;
    position: relative;
}

#footerContainer .footer-container .f-col .f-nav-list .f-nav::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--font-color);
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#footerContainer .footer-container .f-col .contact-wrapper {
    display: flex;
    align-items: flex-start;
    padding-bottom: 27px;
}

/* #footerContainer .footer-container .f-col .contact-wrapper.mobile {
    align-items: center;
}

#footerContainer .footer-container .f-col .contact-wrapper.mobile .t-title {
    padding-bottom: 0;
} */

#footerContainer .footer-container .f-col .contact-wrapper img {
    width: 28px;
    margin-right: 22px;
}

#footerContainer .footer-container .f-col .contact-wrapper .t-title {
    font-family: "Titillium Web", sans-serif;
    font-weight: bold;
    font-size: 22px;
    color: #ffffff;
    line-height: 16px;
    padding-bottom: 10px;
}

#footerContainer .footer-container .f-col .contact-wrapper .t-txt {
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--grey-color);
    line-height: 20px;
}

.social-btns {
    display: flex;
    align-items: center;
    padding-top: 18px;
}

.social-btn {
    width: 32px;
    height: 32px;
}

.ig-btn {
    margin-left: 12px;
}


#copyright,
#copyright a {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: 400;
    font-size: 14px;
    color: var(--grey-color);
    line-height: 20px;
    text-align: center;
    z-index: 1;
}

/* 底部-end */

/* 內容標題-start */
.com-title {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.com-title img {
    height: 64px;
}

.com-title h3 {
    font-family: PingFang HK, PingFang HK;
    font-weight: 600;
    font-size: 45px;
    color: #ffffff;
    line-height: 45px;
}

.com-title-M {
    display: none;
}

/* 內容標題-end */


/* 右側固定條-start */
.fix-link-box {
    position: fixed;
    right: 50px;
    top: 75%;
    z-index: 999;
    transform: translateY(-50%);
}

.fix-link-box .fix-list {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    transition: transform 0.3s ease;
}

.toggle-fix-button {
    display: none;
}

.fix-link-box .fix-list li {
    width: 50px;
    position: relative;
}


.fix-link-box .fix-list li a {
    z-index: 1;
}

.fix-link-box .fix-list li img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    border-radius: 50%;
}

.fix-link-box .fix-list .hover-fix-list {
    display: flex;
    align-items: center;
    font-size: 20px;
    /* background-color: #980019; */
    border-radius: 50px;
    color: #fff;
}

.fix-link-box .fix-list .hover-fix-list div {
    width: 145px;
    height: 100%;
    padding: 18px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    clip-path: inset(0 0 0 100%);
    background-color: #980019;
    transition: clip-path 0.3s ease-in-out;
    position: absolute;
    top: 0;
    right: 0px;
}

.fix-link-box .fix-list .hover-fix-list.download div {
    background-color: #52BB73;
}

.fix-link-box .fix-list .hover-fix-list div a {
    font-size: 16px;
    color: #fff;
}

.fix-link-box .fix-list .hover-fix-list:hover div {
    clip-path: inset(0 0 0 0);
}

.app-download-link {
    cursor: pointer;
}

/* 右側固定條-end */

/* 添加水波動畫關鍵幀 */
@keyframes wave {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(-50%, -50%) rotate(4deg) scale(1.02);
    }

    50% {
        transform: translate(-50%, -50%) rotate(-1deg) scale(1);
    }

    75% {
        transform: translate(-50%, -50%) rotate(-4deg) scale(0.98);
    }

    100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
}

@keyframes wave-left {
    0% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(2deg) scale(1.03);
    }

    50% {
        transform: rotate(-1deg) scale(1);
    }

    75% {
        transform: rotate(-2deg) scale(0.97);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes wave-right {
    0% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(-2deg) scale(1.03);
    }

    50% {
        transform: rotate(1deg) scale(1);
    }

    75% {
        transform: rotate(2deg) scale(0.97);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes flip {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

@keyframes blink {
    0% {
        opacity: 0.035;
    }

    50% {
        opacity: 0.025;
    }

    100% {
        opacity: 0.035;
    }
}


@keyframes tilt {

    0%,
    50%,
    100% {
        transform: rotate(0deg);
        /* 开始和结束时保持原始位置 */
    }

    25% {
        transform: rotate(-2deg);
        /* 向左轻微倾斜 */
    }

    75% {
        transform: rotate(2deg);
        /* 向右轻微倾斜 */
    }
}

/* 回到頂部-start */
#mkdf-back-to-top {
    position: fixed;
    bottom: 46px;
    right: 50px;
    z-index: 10000;
    width: 50px;
    height: 50px;
    opacity: 0;
    visibility: hidden;
    margin: 0;
    animation: slideUp 1.5s ease-in-out infinite;
}

#mkdf-back-to-top img {
    max-width: 100%;
    height: auto;
    width: 50px;
    height: 50px;
    z-index: 999;
    opacity: 1;
}

#mkdf-back-to-top.on {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.base-right-btn {
    background-color: var(--main-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 50px;
    color: white;
    position: fixed;
    z-index: 98;
}

#all-whatsapp {
    bottom: 128px;
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }

    100% {
        transform: translateY(0);
    }
}

/* 回到頂部-end */

/* .lazy-load {
    opacity: 0;
    transition: opacity 500ms ease-in-out;
} */

/* .lazy-load.loaded {
    opacity: 1;
} */

.layui-carousel-arrow:hover,
.layui-carousel-ind ul:hover {
    background-color: rgba(0, 0, 0, 0);
}

@media screen and (max-width: 1547px) {
    .pc-fix-head .nav-section .nav-item .nav-icon {
        width: 24px;
        height: 24px;
    }
}

@media screen and (max-width: 1366px) {
    .header-container .left-wrapper .logo-img {
        height: 100px;
    }

    .nav-section .nav-container {
        width: 100%;
    }

    .nav-section .nav-item .nav-icon {
        width: 24px;
        height: 24px;
    }

    .pc-fix-head .nav-section .nav-i-container.nav-i-9 {
        left: auto;
    }

    .pc-fix-head .pc-fix-head .nav-section .nav-container .nav-item-10 {
        margin-left: 4px;
    }
}

@media screen and (max-width: 1689px) {
    .pc-fix-head .nav-section .nav-item .nav-icon {
        width: 24px;
        height: 24px;
    }
}

/* 更新more-btn样式 */
.my-btn {
    width: fit-content;
    position: relative;
    padding: 12px 32px;
    background-color: #ffffff;
    color: var(--main-color);
    font-size: 16px;
    line-height: 21px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: bold;

    display: flex;
    align-items: center;
    justify-content: center;
}

.my-btn:hover {
    color: #ffffff;
    background-color: var(--main-color);
}

.my-btn .btn-text {
    position: relative;
    z-index: 2;
}

.my-btn .btn-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.my-btn .border-h {
    position: absolute;
    width: calc(100% + 2px);
    height: 1px;
    bottom: -6px;
    left: 10px;
    background: #fff;
    transition: width 0.3s ease;
}

.my-btn .border-v {
    position: absolute;
    top: 10px;
    right: -6px;
    width: 1px;
    height: calc(100% + 2px);
    background: #fff;
    transition: height 0.3s ease;
}

/* Hover效果 */
.my-btn:hover {
    background: var(--main-color);
    color: #fff;
}

.my-btn:hover .border-h {
    width: 0;
}

.my-btn:hover .border-v {
    height: 0;
}

.green-more {
    margin-top: 30px;
}

.green-more .more-btn {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: #ffffff;
}

.green-more .more-btn .btn-text {
    color: #ffffff;
}

.green-more .more-btn:hover {
    background-color: #ffffff;
    color: var(--main-color);
}

.green-more .more-btn:hover .btn-text {
    color: var(--main-color);
}

.green-more .more-btn .border-h,
.green-more .more-btn .border-v {
    background-color: var(--main-color);
}

.section-title {
    font-size: 38px;
    font-weight: 500;
    color: var(--sub-color);
    text-align: center;
    text-transform: uppercase;
}

.section-title span {
    color: var(--main-color);
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 15px auto 0;
    line-height: 1.6;
    font-weight: 300;
}

/* 聯絡我們-start */
.contact-section {
    padding: 100px 0;
    background-color: #F7F7F5;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.contact-header {
    margin-bottom: 70px;
    position: relative;
}

.contact-container .fade-title-right {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1;
    color: #000;
    position: absolute;
    right: 26%;
    top: 12px;
    opacity: 0.035;
    transform: translate(50%, -50%);
    animation: blink 3s infinite;
    font-size: 10.8em;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.contact-info {
    width: 40%;
    padding-top: 20px;
    position: relative;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.info-item .info-icon {
    width: 42px;
    height: 42px;
    margin-right: 14px;
    transition: transform 0.3s ease-in-out;
}

.info-item:hover .info-icon {
    animation: flip 0.8s;
}

.info-item h3 {
    color: #333;
    font-family: 'montserratlight', sans-serif;
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 0;
}

.info-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-form {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-group {
    width: 31.6%;
    position: relative;
    margin-bottom: 8px;
}

.form-group.msg {
    width: 100%;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;

    height: 3.625em;
    border-radius: 0.75em;
    padding-left: 22px;
    color: #666666;
    background-color: #f3f3f3;
    border: 1px solid #f3f3f3;
}

.form-control:focus {
    outline: none;
    border: 1px solid var(--main-color);
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-control::placeholder {
    color: #999;
}

.message-area {
    height: 150px;
    resize: none;
    grid-column: 1 / -1; /* 从第一列跨到最后一列 */
}

.form-submit {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.send-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 40px;
    background-color: #C8A97E;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(200, 169, 126, 0.3);
}

.send-btn:hover {
    background-color: #2C5340;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(44, 83, 64, 0.3);
}

.arrow-icon {
    margin-left: 10px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.send-btn:hover .arrow-icon {
    transform: translateX(5px);
}

.contact-section .bg-4 {
    position: absolute;
    top: -50px;
    left: -30px;
    width: 100%;
    height: auto;
    animation: tilt 6s infinite ease-in-out;
    z-index: -1;
}

.contact-form .col-md-6 {
    position: relative;
}

.contact-form .arrow-down,
.contact-section .arrow-down {
    width: 10px;
    height: 10px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-150%);
}

.contact-form .arrow-down {
    right: 24px;
}

/* 响应式设计 */

/* 表单消息样式 */
.form-message {
    width: 100%;
    padding: 12px 15px;
    margin-top: 15px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.form-message.success {
    background-color: rgba(44, 83, 64, 0.1);
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* 输入框验证样式 */
.form-control.error {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
}

#scrollToContact {
    cursor: pointer;
}


/* 聯絡我們-end */

.iframe-area {
    padding: 0;
}