@import url("common.css");

/*=======搜索弹窗样式========*/
.search-modal {
    --bs-modal-border-width: 0;
    --bs-modal-border-radius: 0;
}

.search-modal .modal-dialog {
    max-width: 100%;
    margin: 0;
}

.search-modal .modal-dialog .modal-body {
    padding-top: 70px;
    padding-bottom: 100px;
}

.search-modal .modal-dialog .search-input {
    position: relative;
    height: 80px;
}

.search-modal .modal-dialog .search-input::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.search-modal .modal-dialog .search-input input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    font-size: 20px;
    padding: 0 30px 0 0;
}

.search-modal .modal-dialog .search-input button {
    position: absolute;
    top: 50%;
    right: 0;
    border: none;
    padding: 0;
    background: transparent;
    transform: translateY(-50%);
}

/* 二维码弹窗样式 */
.qrcode-modal .modal-content {
    border: 0;
    text-align: center;
}

.qrcode-modal .modal-body {
    padding: 2rem;
    position: relative;
}

.qrcode-img {
    max-width: 320px;
    width: 100%;
}

/*------------- Header CSS --------------*/
.header-area {
    position: relative;
    z-index: 999
}

.transparent-header {
    position: absolute;
    background-color: transparent;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999
}

.sticky-bar {
    left: 0;
    margin: auto;
    position: fixed;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    z-index: 9999;
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1)
}

.header-area .header-sticky.sticky-bar {
    background: #fff;
}

.header-area .header-top {
    background: #fff;
    border-bottom: 1px solid #C9D6CB
}

.header-area .header-top .header-info-left ul li {
    color: #305534;
    display: inline-block;
    margin-right: 15px;
    font-size: 14px;
    border-right: 1px solid #C9D6CB;
    padding: 13px 15px 12px 0;
    font-size: 16px;
    font-weight: 500
}

.header-area .header-top .header-info-left ul li:last-child {
    margin-right: 0px;
    padding-right: 0;
    border-right: 0
}

.header-area .header-top .header-info-left ul li i {
    margin-right: 12px;
    color: #305534
}

.header-area .header-top .header-info-right .header-social li {
    display: inline-block
}

.header-area .header-top .header-info-right .header-social li a {
    color: #C9D6CB;
    font-size: 16px;
    padding-left: 19px
}

.header-area .header-top .header-info-right .header-social li a i {
    -webkit-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    -ms-transition: all .4s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg)
}

.header-area .header-top .header-info-right .header-social li a:hover i {
    color: #00880F;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg)
}

.header-bottom .primary-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.header-bottom .site-branding {
    max-width: 200px
}

.header-bottom .main-menu ul>li {
    display: inline-block;
    position: relative;
    margin-left: 17px;
    margin-right: 17px
}

.header-bottom .main-menu ul>li>a {
    position: relative;
    display: block;
    font: 600 18px var(--body-font);
    text-transform: capitalize;
    line-height: 1;
    color: var(--title-color);
    padding: 36px 0
}

.header-bottom .main-menu ul>li>a:after {
    position: absolute;
    bottom: 35%;
    right: 0;
    content: "";
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    -webkit-transition: .35s ease-in-out;
    transition: .35s ease-in-out
}

.header-bottom .main-menu ul>li>a span.dd-trigger {
    margin-left: 5px
}

.header-bottom .main-menu ul>li .sub-menu {
    position: absolute;
    left: 0;
    top: 120%;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s;
    transition: all .4s;
    z-index: 99;
    padding: 10px 0;
    background-color: var(--white-color);
    height: auto;
    text-align: left;
    -webkit-box-shadow: 0 30px 80px 15px rgba(0, 0, 0, 0.09);
    box-shadow: 0 30px 80px 15px rgba(0, 0, 0, 0.09);
    border-radius: 0 0 7px 7px;
}

.header-bottom .main-menu ul>li .sub-menu li {
    display: block;
    margin: 0
}

.header-bottom .main-menu ul>li .sub-menu li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 30px;
    position: relative;
    line-height: 2.5;
    margin: 0;
    color: var(--title-color);
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.header-bottom .main-menu ul>li .sub-menu li a span.dd-trigger {
    margin-left: auto
}

.header-bottom .main-menu ul>li .sub-menu li a::after {
    display: none
}

.header-bottom .main-menu ul>li .sub-menu li a:hover {
    color: var(--primary-color);
}

.header-bottom .main-menu ul>li .sub-menu li .sub-menu {
    left: 100%;
    top: 50%
}

.header-bottom .main-menu ul>li .sub-menu li:hover .sub-menu {
    top: 0
}

.header-bottom .main-menu ul>li .sub-menu li:hover>a {
    margin-left: 5px;
    color: var(--primary-color)
}

.header-bottom .main-menu ul>li:hover>a {
    color: var(--primary-color)
}

.header-bottom .main-menu ul>li:hover>a:after {
    left: 0;
    right: auto;
    width: 100%
}

.header-bottom .main-menu ul>li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.header-bottom .navbar-toggler {
    padding: 11px 7px;
    border: 1px solid var(--title-color);
    background-color: transparent;
    cursor: pointer;
    display: none;
    border-radius: 5px;
    margin-left: 20px
}

.header-bottom .navbar-toggler span {
    position: relative;
    border-radius: 3px;
    display: block;
    height: 2px;
    padding: 0;
    width: 30px;
    cursor: pointer;
    display: block;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    background-color: var(--title-color)
}

.header-bottom .navbar-toggler span:not(:first-child) {
    margin-top: 5px
}

.header-bottom .navbar-toggler.active span:nth-of-type(1) {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    top: 7px
}

.header-bottom .navbar-toggler.active span:nth-of-type(2) {
    opacity: 0
}

.header-bottom .navbar-toggler.active span:nth-of-type(3) {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    top: -7px
}

.header-bottom .nav-right-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header-bottom .nav-right-item .nav-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-right: 30px
}

.header-bottom .nav-right-item .nav-action .action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 20px;
    background-color: var(--title-color);
    cursor: pointer
}

.header-bottom .theme-nav-button .theme-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    line-height: 19px;
    font-family: var(--body-font);
    -webkit-transition: all .3s;
    transition: all .3s
}

.header-bottom .theme-nav-button .theme-btn.style-one {
    position: relative;
    z-index: 1;
    background-color: var(--primary-color);
    color: var(--white-color);
    overflow: hidden;
    padding: 18px 30px
}

@media (prefers-reduced-motion: reduce) {
    .header-bottom .theme-nav-menu .sub-menu {
        transition: none;
    }
}

.theme-nav-menu.no-anim .sub-menu {
    transition: none !important;
}

@media screen and (max-width: 1199.98px) {
    .sticky-bar {
        -webkit-animation: none;
        animation: none;
    }

    .header-bottom {
        padding: 0
    }

    .header-bottom .main-menu ul>li {
        margin-left: 10px;
        margin-right: 10px
    }

    .header-bottom .main-menu ul>li>a {
        font-size: 18px
    }

    .header-bottom .theme-nav-menu {
        text-align: left;
        position: fixed;
        top: 0;
        left: -290px;
        width: 290px;
        height: 100%;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        padding: 20px 20px 30px;
        display: block;
        overflow-x: hidden;
        overflow-y: scroll;
        z-index: 9999;
        background-color: var(--white-color)
    }

    .header-bottom .theme-nav-menu.menu-on {
        left: 0
    }

    .header-bottom .theme-nav-menu .site-branding {
        max-width: 100%;
        width: 100%
    }

    .header-bottom .theme-nav-menu .main-menu {
        margin-top: 30px
    }

    .header-bottom .theme-nav-menu .main-menu ul li {
        display: block;
        margin: 0
    }

    .header-bottom .theme-nav-menu .main-menu ul li:not(:last-child) {
        border-bottom: 1px solid var(--border-color)
    }

    .header-bottom .theme-nav-menu .main-menu ul li a {
        display: block;
        padding: 12px 0;
        font-size: 18px
    }

    .header-bottom .theme-nav-menu .main-menu ul li a:after {
        display: none
    }

    .header-bottom .theme-nav-menu .main-menu ul li .sub-menu {
        width: 100%;
        position: relative;
        top: 0;
        left: 0;
        padding: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        background-color: transparent;
        visibility: visible;
        opacity: 1;
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows .35s ease;
    }

    .header-bottom .theme-nav-menu .main-menu .sub-menu.open {
        grid-template-rows: 1fr;
    }

    .header-bottom .theme-nav-menu .sub-menu>.sub-menu-inner {
        min-height: 0;
        overflow: hidden;
    }

    .header-bottom .theme-nav-menu .main-menu ul li .sub-menu>li>a {
        padding: 5px 20px
    }

    .header-bottom .theme-nav-menu .main-menu ul li .sub-menu>li .sub-menu {
        width: 100%;
        position: relative;
        top: 0;
        left: 0;
        padding: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        background-color: transparent;
        visibility: visible;
        opacity: 1;
        display: none;
        -webkit-transition: none;
        transition: none;
        margin-left: 30px
    }

    .header-bottom .theme-nav-menu .main-menu ul li .dd-trigger {
        position: absolute;
        right: 0;
        top: 10px;
        height: 25px;
        width: 25px;
        border-radius: 3px;
        z-index: 2;
        cursor: pointer;
        font-size: 16px
    }

    .header-bottom .navbar-close {
        width: 35px;
        height: 35px;
        border-radius: 4px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border: 1px solid var(--border-color);
        font-size: 16px
    }

    .header-bottom .navbar-toggler {
        display: block
    }

    .header-bottom .theme-nav-button .theme-btn.style-one {
        padding: 12px 24px
    }

    .header-bottom .theme-menu-bottom h5 {
        margin-bottom: 25px
    }

    .header-bottom .theme-menu-bottom .social-link li {
        display: inline-block;
        margin-right: 10px
    }

    .header-bottom .theme-menu-bottom .social-link li a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid var(--border-color);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .header-bottom .theme-menu-bottom .social-link li a:hover {
        background-color: var(--primary-color);
        color: var(--white-color)
    }
}

@media screen and (max-width:991.98px) {
    .header-area .header-bottom .main-menu ul>li>a {
        color: var(--title-color)
    }

    .header-area .header-bottom .main-menu ul>li .sub-menu {
        background-color: var(--white-color)
    }

    .header-area .header-bottom .main-menu ul>li .sub-menu li a {
        color: var(--title-color)
    }
}


@media (max-width: 767.98px) {
    .header-area .header-top .header-info-left ul li {
        margin-right: 10px;
        font-size: 13px
    }

    .nav-right-item .nav-action {
        margin-right: 0
    }

    .nav-right-item .nav-action .action-btn.search-btn {
        display: none
    }
}

/*------------- Hero CSS ------------*/
.main-slider {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: -1;
}

.main-slider:hover .swiper-button-next,
.main-slider:hover .swiper-button-prev {
    opacity: 1
}

.main-slider .container {
    position: relative;
    z-index: 30
}

.main-slider .swiper-slide {
    position: relative
}

.main-slider .swiper-slide .swiper-silde-img {
    width: 100%;
    max-height: 1000px;
    -o-object-fit: contain;
    object-fit: contain;
    /*transform: scale(1);
    transition: transform 7000ms ease*/
}

.main-slider .swiper-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    display: flex;
    align-items: center
}

.main-slider .swiper-slide-content .more {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    border: none;
    outline: none !important;
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all .3s linear;
    overflow: hidden;
    letter-spacing: .2em;
    z-index: 1;
    opacity: 0;
    transform: translateY(100px);
    transition-delay: 2500ms;
    transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease, background 500ms ease
}

.main-slider .swiper-slide-active .main-slider-shape-1 {
    opacity: 1;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 200ms;
    opacity: .5
}

/*
.main-slider .swiper-slide-active .swiper-silde-img {
    transform: scale(1)
}*/

.main-slider .swiper-slide-active .more,
.main-slider .swiper-slide-active h2,
.main-slider .swiper-slide-active p {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(0)
}

.main-slider h2 {
    margin: 0;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(120px);
    transition-delay: 1000ms;
    transition: transform 2000ms ease, opacity 2000ms ease;
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -0.02em;
    text-shadow: 2px -1px 4px #000
}

.main-slider p {
    font-size: 18px;
    color: #eee;
    margin: 0;
    line-height: 30px;
    margin-bottom: 53px;
    opacity: 0;
    font-weight: 400;
    transform: translateY(100px);
    transition-delay: 2500ms;
    transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease, background 500ms ease;
    text-shadow: 2px -1px 4px #000
}

.main-slider-shape-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    background-size: cover;
    opacity: 0;
    transform: translateX(200px);
    z-index: 2
}

.main-slider__content {
    position: relative;
    display: block;
    z-index: 30
}

.main-slider__nav {
    width: 100%;
    position: absolute;
    top: 50%;
    z-index: 100;
    transform: translateY(-50%)
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
    position: absolute;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 100;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    transition: all 500ms ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    opacity: 0
}

.main-slider__nav .swiper-button-next {
    right: 15px
}

.main-slider__nav .swiper-button-prev {
    left: 15px
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
    display: none
}

.main-slider__nav .fa {
    position: relative;
    font-size: 30px;
    color: #333
}

#main-slider-pagination {
    z-index: 10;
    bottom: 59px;
    left: 50%;
    width: 100%;
    max-width: 88%;
    transform: translate(-50%, calc(0% + 0px));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
    margin-left: 5px
}

#main-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    opacity: .4;
    background-color: #fff;
    transition: all 500ms ease;
    margin: 0
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
    height: 10px;
    opacity: 1
}

/*----------------About Section---------------------*/
.about-section {
    background-image: url("../image/banner-img/about-bg-two.png");
    background-size: cover;
    background-repeat: no-repeat
}

@media(max-width: 575.98px) {
    .about-section {
        padding: 0 15px 0 15px
    }
}

.about-section .section-header .sub-title h2 {
    font-size: clamp(1rem, 1.4rem + 1.4vw, 3rem);
}

.about-section .section-header .description p {
    margin-bottom: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 8;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

@media(max-width: 1399.98px) {
    .about-section .section-header .description p {
        margin-bottom: 8px;
        font-size: 16px
    }
}

.about-section .about-left-area {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.about-section .about-left-area .about-img {
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: clamp(10px, 1vw, 20px);
}

.about-section .about-left-area .play-btn {
    position: absolute;
    inset-inline-start: 50%;
    inset-block-start: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 11;
}

.about-section .about-left-area .play-btn .play-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--secondary-color);
    width: clamp(50px, 5vw, 55px);
    height: clamp(50px, 5vw, 55px);
    color: var(--primary-color);
    font-size: 1rem;
    line-height: clamp(40px, 4vw, 45px);
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.about-section .about-left-area .play-btn .ripple,
.about-section .about-left-area .play-btn .ripple::before,
.about-section .about-left-area .play-btn .ripple::after {
    position: absolute;
    inset-block-start: 50%;
    inset-inline-start: 50%;
    width: 45px;
    height: 45px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -webkit-animation: ripple-wave 3s infinite;
    animation: ripple-wave 3s infinite;
}

.about-section .about-left-area .play-btn .ripple::before {
    content: "";
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.about-section .about-left-area .play-btn .ripple::after {
    content: "";
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

@keyframes ripple-wave {
    70% {
        -webkit-box-shadow: 0 0 0 50px transparent;
        box-shadow: 0 0 0 50px transparent;
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 transparent;
        box-shadow: 0 0 0 0 transparent;
    }
}

.about-section .about-left-area .about-video-area {
    background-color: #fff;
    border-radius: 20px;
    padding: 12px;
    position: absolute;
    right: 10%;
    top: 49%
}

.about-section .about-left-area .about-video-area2 {
    background-color: #fff;
    border-radius: 20px;
    padding: 12px;
    position: absolute;
    right: 10%;
    top: 49%
}

@media(max-width: 1399.98px) {
    .about-section .about-left-area .about-video-area {
        right: 0;
        top: 47%
    }
}

@media(max-width: 1199.98px) {
    .about-section .about-left-area .about-video-area {
        top: 70%;
        right: 3%
    }
}

@media(max-width: 991.98px) {
    .about-section .about-left-area .about-video-area {
        right: 6%;
        top: 45%
    }
}

@media(max-width: 767.98px) {
    .about-section .about-left-area .about-video-area {
        right: -3%;
        z-index: 9
    }
}

@media(max-width: 425px) {
    .about-section .about-left-area .about-video-area {
        width: 70%
    }
}

.about-section .about-left-area .about-video-area .video-area {
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translateX(-50%)
}

.about-section .about-left-area .about-video-area .video-area .icon {
    height: 66px;
    width: 66px;
    background: linear-gradient(to right, #ff6500, #e4a379);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 999
}

.about-section .about-left-area .about-video-area .video-area .icon .wrapper {
    display: inline-block;
    position: absolute;
    top: 65px;
    left: 65px
}

.about-section .about-left-area .about-video-area .video-area .icon .waves {
    position: absolute;
    width: 95px;
    height: 95px;
    background: linear-gradient(to right, rgba(255, 101, 0, 0.8), rgba(228, 163, 121, 0.8));
    opacity: 0;
    border-radius: 100%;
    right: -15px;
    bottom: -15px;
    z-index: -1;
    animation: waves 3s ease-in-out infinite
}

.about-section .about-left-area .about-video-area .video-area .icon .waves.wave-1 {
    animation-delay: 0s
}

.about-section .about-left-area .about-video-area .video-area .icon .waves.wave-2 {
    animation-delay: 1s
}

.about-section .about-left-area .about-video-area .video-area .icon .waves.wave-3 {
    animation-delay: 2s
}

.about-section .about-left-area .about-video-area img {
    border-radius: 10px
}

.stat-box {
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 2.5rem 1.25rem;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    border: 1px solid rgba(198, 217, 132, 0.1);
    width: 100%;
    min-width: 0;
}

.stat-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(198, 217, 132, 0.2) 0%, rgba(242, 205, 92, 0.2) 100%);
    z-index: -1;
    opacity: 0;
    -webkit-transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(250, 178, 0, 0.2)), to(transparent));
    background: linear-gradient(90deg, transparent, rgba(250, 178, 0, 0.2), transparent);
    -webkit-transition: 0.6s;
    transition: 0.6s;
    z-index: 1;
}

.stat-box:hover {
    -webkit-transform: translateY(-10px) scale(1.02);
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(242, 205, 92, 0.3);
    -webkit-box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-box:hover::after {
    left: 100%;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.stat-box:hover .stat-info-icon-wrapper {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
    background-color: rgba(242, 205, 92, 1);
}

.stat-box:hover .stat-info-icon-wrapper .stat-info-icon i {
    color: rgba(0, 64, 52, 1);
}

.stat-box:hover .stat-title::after {
    width: 50px;
    background-color: #f2cd5c;
}

.stat-box .stat-info-icon-wrapper {
    width: clamp(4.375rem, calc(4.063rem + 1.563vw), 5.625rem);
    height: clamp(4.375rem, calc(4.063rem + 1.563vw), 5.625rem);
    background-color: rgba(242, 205, 92, 0.1);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto clamp(15px, 3vw, 25px);
    position: relative;
    -webkit-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px dashed rgba(242, 205, 92, 0.3);
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 0 0 5px rgba(242, 205, 92, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 0 0 5px rgba(242, 205, 92, 0.05);
}

.stat-box .stat-info-icon-wrapper::before,
.stat-box .stat-info-icon-wrapper::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

@keyframes pulse_icon {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0.5;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.stat-box .stat-info-icon-wrapper::before {
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid rgba(242, 205, 92, 0.6);
    -webkit-animation: pulse_icon 2s infinite;
    animation: pulse_icon 2s infinite;
}

.stat-box .stat-info-icon-wrapper .stat-info-icon {
    color: var(--primary-color);
    font-size: clamp(24px, 5vw, 32px);
    -webkit-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-box .stat-info-text span {
    color: #000;
    font-weight: 600;
    font-size: clamp(0.875rem, 1.5rem, 1.875rem);
    line-height: 30px;
    margin-bottom: 10px;
    display: inline-block;
}

.stat-box h4 {
    color: #6c757d;
    font-weight: 400;
    font-size: clamp(0.875rem, 1rem, 1.2rem);
}

/*---------------------Products Section CSS---------------------*/
.product-section {
    overflow: hidden
}

@media(max-width: 575.98px) {
    .product-section {
        padding: 0 15px 0 15px
    }
}

.product-section .product-pagination-area .product-pagination {
    width: unset !important;
    display: flex;
    gap: 15px
}

@media(max-width: 991.98px) {
    .product-section .product-pagination-area .product-pagination {
        gap: 10px
    }
}

@media(max-width: 767.98px) {
    .product-section .product-pagination-area .product-pagination {
        gap: 5px
    }
}

.product-section .product-pagination-area .product-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    background-color: var(--primary-color-opc-2);
    opacity: 1;
    position: relative
}

.product-section .product-pagination-area .product-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: var(--primary-color)
}

.product-section .product-pagination-area .product-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    content: "";
    height: 8px;
    width: 20px;
    border-radius: 6px;
    background-color: var(--primary-color);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.product-section .shape-tree {
    position: absolute;
    left: -18%;
    top: 50%
}

.product-section .shape-ballon {
    position: absolute;
    right: -18%;
    top: 10%
}

.product-slider-btn {
    display: flex;
    align-items: center
}

@media(max-width: 991.98px) {
    .product-slider-btn {
        display: none
    }
}

.product-slider-btn .product-card-prev {
    position: absolute;
    top: 60%;
    left: -70px
}

.product-slider-btn .product-card-next {
    position: absolute;
    top: 60%;
    right: -70px
}

.product-slider-btn .slider-btn {
    border: 1px solid rgba(35, 31, 32, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 53px;
    width: 53px;
    transition: .3s
}

.product-slider-btn .slider-btn svg path {
    fill: rgba(0, 0, 0, 0.5)
}

.product-slider-btn .slider-btn:hover {
    background-color: #4da627
}

.product-slider-btn .slider-btn:hover svg path {
    fill: var(--white-color);
    fill-opacity: .5
}

.product-slider-btn-four {
    display: flex;
    align-items: center
}

@media(max-width: 991.98px) {
    .product-slider-btn-four {
        display: none
    }
}

.product-slider-btn-four .tour-card-prev {
    position: absolute;
    top: 60%;
    left: -5.3%
}

@media(max-width: 1599.98px) {
    .product-slider-btn-four .tour-card-prev {
        left: -4%
    }
}

@media(max-width: 1399.98px) {
    .product-slider-btn-four .tour-card-prev {
        top: 60%;
        left: -4%
    }
}

@media(max-width:1199.98px) {
    .product-slider-btn-four .tour-card-prev {
        top: 65%;
        left: -7%
    }
}

@media(max-width: 991.98px) {
    .product-slider-btn-four .tour-card-prev {
        display: none
    }
}

.product-slider-btn-four .tour-card-next {
    position: absolute;
    top: 60%;
    right: -5.3%
}

@media(max-width: 1599.98px) {
    .product-slider-btn-four .tour-card-next {
        right: -4%
    }
}

@media(max-width: 1399.98px) {
    .product-slider-btn-four .tour-card-next {
        top: 60%;
        right: -4%
    }
}

@media(min-width: 992px) and (max-width:1199px) {
    .product-slider-btn-four .tour-card-next {
        top: 65%;
        right: -7%
    }
}

@media(max-width: 991.98px) {
    .product-slider-btn-four .tour-card-next {
        display: none
    }
}

.product-slider-btn-four .slider-btn {
    border: 1px solid rgba(35, 31, 32, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 53px;
    width: 53px;
    transition: .3s
}

.product-slider-btn-four .slider-btn svg path {
    fill: rgba(0, 0, 0, 0.5)
}

.product-slider-btn-four .slider-btn:hover {
    background-color: #4da627
}

.product-slider-btn-four .slider-btn:hover svg path {
    fill: var(--white-color);
    fill-opacity: .5
}

/*----------------------生产研发 & 道地食材--------------------------*/

.ingredients-section-section .section-header .sub-title-one .bg-shape-one,
.environment-section .section-header .sub-title-one .bg-shape-one {
    position: absolute;
    width: 100%;
    height: auto;
    top: 3px;
    left: 0;
    z-index: 1
}

.ingredients-section-section .section-header .description,
.environment-section .section-header .description {
    max-width: 619px;
    width: 100%;
    margin: 0 auto
}

@media(max-width: 767.98px) {

    .ingredients-section-section .primary-btn,
    .environment-section .primary-btn {
        margin: 30px
    }
}

.ingredients-area,
.environment-area {
    -moz-columns: 3;
    columns: 3;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
    width: 100%
}

@media(max-width: 767.98px) {

    .ingredients-area,
    .environment-area {
        -moz-columns: 2;
        columns: 2;
        -moz-column-gap: 1.5rem;
        column-gap: 1.5rem
    }
}

@media(max-width: 480px) {

    .ingredients-area,
    .environment-area {
        -moz-columns: 1;
        columns: 1;
        -moz-column-gap: 1.5rem;
        column-gap: 1.5rem
    }
}

/*--------------新闻列表--------------------*/

@media(max-width: 575.98px) {
    .news-list-section {
        padding: 15px
    }
}

.news-card {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(17, 17, 17, 0.05);
    padding-bottom: 30px;
    margin-bottom: 35px
}

@media(max-width: 1199.98px) {
    .news-card {
        margin-bottom: 20px;
        padding-bottom: 20px
    }
}

.news-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0
}

.news-card .news-card-img-wrap {
    position: relative;
    transition: all .5s ease-out
}

.news-card .news-card-img-wrap .card-img {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 10px
}

.news-card .news-card-img-wrap .card-img img {
    border-radius: 10px;
    transition: all .5s ease-out;
    width: 100%
}

.news-card .news-card-img-wrap .card-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(1deg, rgba(21, 47, 0, 0.56) 1.03%, rgba(21, 47, 0, 0) 90.67%);
    border-radius: 10px 10px 0 0;
    z-index: 1
}

.news-card .news-card-img-wrap .card-img::after {
    position: absolute;
    width: 200%;
    height: 0;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    content: "";
    z-index: 1
}

.news-card .news-card-content .card-content-top h5 {
    margin-bottom: 12px;
    transition: .3s
}

@media(max-width: 1199.98px) {
    .news-card .news-card-content .card-content-top h5 {
        max-width: 400px;
        width: 100%;
        margin-bottom: 10px
    }
}

@media(max-width: 991.98px) {
    .news-card .news-card-content .card-content-top h5 {
        max-width: 600px;
        width: 100%
    }
}

.news-card .news-card-content .card-content-top h5 a {
    font-family: "Rubik", serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--title-color);
    text-transform: capitalize;
    margin: 0;
    transition: .3s
}

@media(max-width:1399.98px) {
    .news-card .news-card-content .card-content-top h5 a {
        font-size: 24px
    }
}

@media(max-width: 1199.98px) {
    .news-card .news-card-content .card-content-top h5 a {
        font-size: 20px
    }
}

@media(max-width: 991.98px) {
    .news-card .news-card-content .card-content-top h5 a {
        font-size: 28px
    }
}

@media(max-width: 767.98px) {
    .news-card .news-card-content .card-content-top h5 a {
        font-size: 24px
    }
}

.news-card .news-card-content .card-content-top h5:hover a {
    color: var(--primary-color)
}

@media(max-width: 575.98px) {
    .news-card .news-card-content .card-content-top h5 {
        margin-bottom: 10px
    }
}

.news-card .news-card-content .card-content-top p {
    font-family: "Jost", serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 29px;
    color: #686868;
    text-transform: capitalize;
    margin-bottom: 30px
}

@media(max-width: 1199.98px) {
    .news-card .news-card-content .card-content-top p {
        font-size: 14px;
        line-height: 1.4;
        max-width: 450px;
        width: 100%;
        margin-bottom: 18px
    }
}

@media(max-width: 991.98px) {
    .news-card .news-card-content .card-content-top p {
        font-size: 16px;
        line-height: 1.4;
        max-width: 600px;
        width: 100%
    }
}

@media(max-width: 767.98px) {
    .news-card .news-card-content .card-content-top p {
        font-size: 16px;
        line-height: 1.4;
        max-width: 600px;
        width: 100%
    }
}

.news-card .news-card-content .top-content {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 20px
}

@media(max-width: 1199.98px) {
    .news-card .news-card-content .top-content {
        margin-bottom: 5px
    }
}

.news-card .news-card-content .top-content li {
    display: flex;
    align-items: center;
    gap: 6px
}

.news-card .news-card-content .top-content li a {
    font-family: "Rubik", serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: rgba(17, 17, 17, 0.5);
    margin-bottom: -4px;
    transition: .3s
}

.news-card .news-card-content .top-content li .icon i {
    color: #11111180;
    font-size: 14px;
}

.news-card .news-card-content .top-content li a:hover {
    color: var(--primary-color)
}

.news-card .news-card-content .top-content li span {
    font-family: "Rubik", serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: rgba(17, 17, 17, 0.5);
    margin-bottom: -4px;
    transition: .3s
}

.news-card .news-card-content .top-content li span:hover {
    color: var(--primary-color)
}

.news-card .badge {
    position: absolute;
    top: 10%;
    left: 5%;
    z-index: 1
}

.news-card .badge .featured {
    color: var(--white-color);
    font-family: "Rubik", serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    display: inline-flex;
    padding: 1px 20px;
    background-color: var(--primary-color);
    border-radius: 39px
}

.news-card .badge .featured.two {
    background-color: #ef2929
}

.news-card .badge .featured.three {
    background-color: #ef2929
}

.news-card:hover .news-card-img-wrap .card-img img {
    transform: scale(1.1)
}

.news-card:hover .news-card-img-wrap .card-img::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent
}

footer {
    background-color: #1f232b;
    padding: 40px 0
}

footer .footer-link {
    border-bottom: 1px solid #353535;
    padding-bottom: 20px
}

footer .footer-link .public-title {
    color: #aaa
}

footer .footer-link .public-title p {
    color: #555
}

footer .footer-link .public-title .logo {
    max-width: 200px;
}

footer .footer-link ul {
    margin-left: 30px;
    flex-wrap: wrap
}

footer .footer-link ul li {
    margin-right: 30px
}

footer .footer-link ul a {
    color: #aaa;
    font-weight: 600;
    font-size: 14px
}

footer .footer-link ul a:hover {
    color: var(--primary-color)
}

footer .footer-logo {
    width: 128px
}

footer .footer-menu {
    padding-top: 20px
}

footer .footer-menu li {
    margin-right: 60px;
    font-size: 14px
}

@media(min-width: 992px) and (max-width: 1600px) {
    footer .footer-menu li {
        margin-right: 40px;
    }
}

footer .footer-menu li dt {
    font-size: 16px;
    color: #eee;
    margin-bottom: 5px
}

footer .footer-menu li a {
    color: #999;
    line-height: 30px
}

footer .footer-menu li a:hover {
    color: var(--primary-color)
}

footer .footer-contact {
    margin-top: 20px;
    color: #999;
    display: flex;
    align-items: end;
    text-align: right;
    flex-direction: column
}

footer .footer-contact p {
    font-size: 14px;
    margin-bottom: 5px
}

footer .footer-contact p:first-child {
    font-size: 20px;
    font-weight: 700;
    color: #eee
}

footer .footer-contact .qrcodes {
    margin-top: 10px;
    text-align: center
}

footer .footer-contact .qrcodes .qrcode-img {
    margin-left: 5px
}

footer .footer-contact .qrcodes img {
    width: 100px;
    height: 100px;
    background-color: #eee
}

footer .footer-contact .qrcodes p {
    margin-top: 5px
}

.copyriht {
    padding: 10px 0;
    background-color: #171717;
    text-align: center;
    font-size: 14px;
    color: #666
}

.copyriht a {
    color: #666
}

/*===================视频弹窗====================*/
.videoModal .modal-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* 取消模态框默认的内边距，让视频紧贴边缘 */
.videoModal .modal-content .modal-body {
    padding: 0 !important;
    position: relative;
    /* 为关闭按钮提供定位基准 */
}

/* 视频占满模态框，加个圆角更美观 */
.videoModal .modal-content .modal-body video {
    width: 100%;
    max-height: 80vh;
    display: block;
    background: #000;
    border-radius: 12px;
    /* 圆角，更柔和 */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    /* 轻微阴影，突出视频 */
}

/* 右上角的关闭按钮（×） */
.videoModal .modal-content .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 1055;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    padding: 0;
}

.videoModal .modal-content .close-btn:hover {
    background: rgba(255, 0, 0, 0.8);
    border-color: #fff;
}

/* 可选：让遮罩层更透明（但保留半透明效果） */
.videoModal .modal-content .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.6);
    /* 默认是0.5，调高一点更突出视频 */
}

/*==============产品详情页轮播图===================*/
.product-details .gallery-top {
    height: 75%;
    width: 100%;
    overflow: hidden;
    border-radius: 10px
}

.product-details .gallery-top .swiper-slide {
    border: 1px solid #ddd;
    border-radius: 10px
}

.product-details .gallery-thumbs {
    height: 25%;
    box-sizing: border-box;
    padding: 10px 0;
    overflow: hidden
}

.product-details .gallery-thumbs .swiper-slide {
    height: 100%;
    border: 1px solid #999;
    opacity: .4;
    border-radius: 10px;
    transition: all .5s
}

.product-details .gallery-thumbs .swiper-slide-thumb-active {
    border-color: #000;
    opacity: 1
}

.product-details .swiper-slide {
    background: none;
    overflow: hidden
}

.product-details .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: cover;
    border-radius: 10px
}

/* ===== 首页招商板块 ===== */
.home-investment {
    position: relative;
    padding: 100px 0;
    background: #FAE6E0;
    overflow: hidden;
}

.home-investment::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../image/banner-img/investment-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.home-investment .container {
    position: relative;
    z-index: 2;
}

.investment-seal {
    width: 200px;
    height: 200px;
    border: 3px solid var(--color-cinnabar);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(178, 58, 58, 0.08);
    position: relative;
    transform: rotate(-3deg);
}

.investment-seal::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(178, 58, 58, 0.4);
    border-radius: 4px;
}

.investment-seal .seal-text {
    font-family: var(--bs-font-serif);
    font-size: 28px;
    font-weight: 900;
    color: var(--color-cinnabar);
    letter-spacing: 4px;
    line-height: 1.4;
    text-align: center;
}

.investment-seal .seal-sub {
    font-size: 12px;
    color: var(--color-gold-light);
    letter-spacing: 2px;
    margin-top: 8px;
}

.adv-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(245, 240, 232, 0.12);
    border-radius: 16px;
    padding: 36px 28px;
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    transition: all 0.4s ease;
}

.adv-card:hover {
    background: rgba(245, 240, 232, 0.1);
    border-color: rgba(201, 169, 97, 0.4);
    transform: translateY(-4px);
}

.adv-icon {
    width: 65px;
    height: 65px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.adv-icon i {
    font-size: 28px;
    color: var(--white-color);
}

.adv-title {
    font-family: var(--bs-font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 10px;
}

.adv-desc {
    font-size: 14px;
    color: var(--title-color, 0.8);
    line-height: 1.8;
}

.investment-cta-row {
    padding: 40px 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 16px;
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
}

.investment-cta-text h3 {
    font-family: var(--bs-font-serif);
    font-size: 26px;
    color: var(--title-color);
    margin-bottom: 8px;
}

.investment-cta-text p {
    font-size: 15px;
    color: var(--title-color, 0.8);
}

/*===================联系我们页面====================*/
.contact-section {
    position: relative
}

.contact-section .contact-information .single-information h2 {
    font-family: Rubik;
    font-weight: 500;
    font-size: 35px;
    line-height: 48.5px;
    color: #000;
    text-align: center;
    margin: 0
}

@media (max-width:1399.98px) {
    .contact-section .contact-information .single-information h2 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 5px
    }
}

@media(max-width: 1199.98px) {
    .contact-section .contact-information .single-information h2 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 5px
    }
}

@media(max-width: 767.98px) {
    .contact-section .contact-information .single-information h2 {
        margin-bottom: 10px
    }
}

.contact-section .contact-information .single-information P {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #666;
    margin: 0
}

@media(max-width: 1199.98px) {
    .contact-section .contact-information .single-information P {
        font-size: 16px;
        line-height: 1.3
    }
}

@media(max-width: 991.98px) {
    .contact-section .contact-information .single-information P {
        max-width: 500px;
        width: 100%;
        margin: 0 auto
    }
}

.contact-section .contact-list-box {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1)
}

.contact-section .contact-list-icon span {
    display: inline-block;
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    margin-right: 25px;
    border-radius: 5px;
    background-color: #F2F8F5;
    border: 1px solid rgba(121, 121, 121, 0.2)
}

@media(max-width:1199.98px) {
    .contact-section .contact-list-icon span {
        height: 50px;
        width: 50px;
        line-height: 50px
    }
}

@media(max-width:1199.98px) {
    .contact-section .contact-list-icon span svg {
        height: 30px
    }
}

.contact-section .contact-list span {
    font-weight: 600;
    font-size: 24px;
}

@media(max-width:1199.98px) {
    .contact-section .contact-list span {
        font-size: 22px
    }
}

.contact-section .contact-form-wrapper {
    background-color: #F2F8F5;
    border-radius: 15px;
    padding: 50px;
    position: relative;
    z-index: 2
}

@media(max-width: 767.98px) {
    .contact-section .contact-form-wrapper {
        padding: 30px
    }
}

.contact-section .contact-form-wrapper .form-title h2 {
    font-family: Rubik;
    font-weight: 500;
    font-size: 28px;
    line-height: 33.18px;
    color: #000;
    margin-bottom: 6px
}

.contact-section .contact-form-wrapper .form-title p {
    font-family: "Jost", serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #666;
    margin-bottom: 10px
}

@media(max-width: 767.98px) {
    .contact-section .contact-form-wrapper .form-title p {
        font-size: 14px;
        line-height: 1.3
    }
}

.contact-section .contact-form-wrapper .form-check .form-check-input {
    margin-top: 6px
}

.contact-section .objective-shape {
    position: absolute;
    left: 0;
    top: 30%;
    z-index: -1
}

.contact-section .input-group {
    height: 50px;
}

.map-section iframe {
    width: 100%;
    min-height: 409px;
    border-radius: 15px
}

/*==============搜索结果页面CSS===============*/
.search-result-area .newslistp_bot {
    width: 100%;
    height: auto;
    margin-top: 30px;
}

.search-result-area .newslistp_bot ul li {
    margin-bottom: 40px;
    transition: all .5s;
}

.search-result-area .newslistp_bot ul li a {
    display: block;
    border: 1px solid #f2f2f2;
    border-radius: 10px;
    background-color: #fff;
    overflow: hidden;
}

.search-result-area .newslistp_botdes {
    padding: 15px;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    transition: all .5s
}

.search-result-area .newslistp_botdes h3 {
    color: #333;
    font-size: 16px
}

.search-result-area .newslistp_botdes p {
    font-size: 14px;
    color: #333;
    width: 100%;
    text-align: right
}
.search-result-area .newslistp_bot ul li:hover .newslistp_botimg img {
    transform: scale(1.05)
}

.search-result-area .newslistp_bot ul li:hover .newslistp_botdes h3,
.search-result-area .newslistp_bot ul li:hover .newslistp_botdes p {
    color: var(--primary-color)
}

.search-result-area .newslistp_bot ul li:hover .newslistp_botdes {
    background-color: var(--primary-color);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .1)
}

.search-result-area .newslistp_bot ul li:hover .newslistp_botdes h3,
.search-result-area .newslistp_bot ul li:hover .newslistp_botdes p {
    color: #fff
}