/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    background-color: #0a1a04;
    color: #fff;
}

.container {
    max-width: 1400px !important;
    margin: 0 auto;
}

/* 语言切换器样式 */
.language-switch {
    position: relative;
    display: flex;
    align-items: center;
}

.language-switch select {
    min-width: 100px;
}

/* 数据统计样式 */
.stat-item .number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--bs-success);
}

/* 自定义颜色 */
:root {
    --bs-success: #0a4d2e;
    --bs-success-rgb: 10, 77, 46;
}

/* 内容区背景 */
main {
    background-color: #0a1a04;
}

/* 各个区块的容器样式 */
.section-container {
    background-color: #0a1a04;
    width: 100%;
}

/* Hero区域特殊处理 */
.hero.bg-success {
    width: 100%;
}

/* 顶部布局样式 */
header {
    background: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Logo区域样式 */
.top-logo {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 15px;
    background: transparent;
}

.top-logo img {
    display: inline-block;
    width: 146px;
    height: 39px;
}

/* 导航栏样式 */
.navbar {
    padding: 0;
    position: relative;
    background-color: transparent !important;
}

/* 导航边框 */
.nav-border-top,
.nav-border-bottom {
    position: absolute;
    left: 50%;
    width: 100%;
    max-width: 1400px;
    height: 1px;
    background-color: #105D0B;
    transform: translateX(-50%);
}

.nav-border-top {
    top: 0;
}

.nav-border-bottom {
    bottom: 0;
}

/* 导航链接样式 */
.navbar-nav {
    padding: 12px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
}

/* 导航项样式 */
.navbar-nav .nav-item {
    flex: 1;
    text-align: center;
    margin: 0 5px;
}

.navbar-nav .nav-link {
    color: #6EB651 !important;
    padding: 0.25rem 0 !important;
    text-align: center;
    font-size: 15px;
}

.navbar-nav .select {
    color: #BEFE35 !important;
}

.navbar-nav .nav-link:hover {
    color: #BEFE35 !important;
}

/* 语言切换器位置调整 */
.language-switch {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.language-switch select {
    min-width: 100px;
    border: 1px solid #105D0B;
    color: #105D0B;
    background-color: #0a1a04;
    padding: 3px 20px 3px 8px;
    border-radius: 4px;
    font-size: 14px;
}

/* 导航栏容器 */
.navbar .container {
    position: relative;
    padding-top: 1px;
    padding-bottom: 1px;
}

/* 轮播图容器 */
.banner-container {
    width: 100%;
    height: 768px;
    overflow: hidden;
    position: relative;
}

/* 轮播图样式 */
.carousel {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 轮播图控制按钮样式 */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 30px;
    z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* 轮播图指示器样式 */
.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 80px !important;
    height: 12px;
    margin: 0 6px;
    background-color: #546529;
}

.carousel-indicators button.active {
    background-color: #CEF266;
}

/* 导航栏悬浮效果 */
header.fixed-top {
    position: fixed;
    transition: background-color 0.3s;
}

/* 当页面滚动时添加背景色 */
header.scrolled {
    background-color: rgba(10, 26, 4, 0.95);
}

/* 轮播图浮层 */
.banner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
}

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

.overlay-content img {
    width: 421px;
    height: 421px;
    transition: transform 0.3s ease-out;
}

.overlay-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: transform 0.3s ease-out;
}

.overlay-text .cn-text {
    font-size: 72px;
    margin-bottom: 10px;
    white-space: nowrap;
    color: #DEFB85;
}

.overlay-text .en-text {
    font-size: 28px;
    font-weight: 300;
    opacity: 0.9;
    white-space: nowrap;
    color: #7FDA60;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .overlay-content img {
        width: 280px;
        height: 280px;
    }

    .overlay-text .cn-text {
        font-size: 28px;
    }

    .overlay-text .en-text {
        font-size: 18px;
    }
}

/* 世界地图部分 */
.world-map-section {
    padding: 40px 0 80px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.world-map {
    width: 100%;
    height: auto;
    display: block;
}

/* 地图点位样式 */
.map-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #105D0B;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #105D0B;
}

/* 点位闪烁动画 */
.point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(16, 93, 11, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 1.5s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

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

/* 点位闪烁效果 */
.point.blink {
    animation: blink 0.8s ease-in-out;
    box-shadow: 0 0 25px #2EFF4E;
    background: #2EFF4E;
}

@keyframes blink {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px #105D0B;
        background: #105D0B;
    }



    50% {
        transform: translate(-50%, -50%) scale(2);
        box-shadow: 0 0 40px #2EFF4E;
        background: #2EFF4E;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 40px #2EFF4E;
        background: #2EFF4E;
    }

    /* 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px #105D0B;
        background: #105D0B;
    } */
}

/* 地图上方的文字样式 */
.map-title {
    text-align: center;
}

.container-map {
    margin-top: -20px;
}

.map-title .lead {
    font-size: 44px;
    max-width: 600px;
    margin: 0 auto;
    color: #DEFB85;
}

/* 地图下方描述文字 */
.map-description {
    width: 642px;
    margin: -62px auto 0;
    text-align: center;
}

.map-description p {
    font-family: FZLanTingHei-R-GBK;
    font-weight: 400;
    font-size: 16px;
    color: #B1CA80;
    line-height: 30px;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .map-description {
        width: 100%;
        padding: 0 20px;
        margin-top: 50px;
    }
}

/* 地图中央文字 */
.map-center-text {
    position: absolute;
    top: 29%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 691px;
    height: 76px;
    z-index: 2;
}

.map-center-text p {
    font-family: "Hiragino Sans GB", sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #B1CA80;
    line-height: 30px;
    text-align: center;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .map-center-text {
        width: 90%;
        height: auto;
        padding: 0 20px;
    }
}

/* 地图统计数据 */
.map-stats {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 150px));
    width: 100%;
    z-index: 2;
}

.stat-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    white-space: nowrap;
}

.stat-item {
    text-align: center;
    white-space: nowrap;
}

.stat-number {
    width: 161px;
    height: 35px;
    font-family: FZLanTingHei-L-GBK;
    font-weight: 400;
    font-size: 44px;
    color: #D3F768;
    line-height: 30px;
    margin-bottom: 10px;
}

.stat-number span {
    font-size: 20px;
    margin-left: 4px;
}

.stat-label {
    width: 54px;
    height: 13px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    font-size: 14px;
    color: #83A073;
    line-height: 30px;
    margin: 0 auto;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .stat-row {
        flex-wrap: wrap;
        gap: 40px;
    }

    .stat-item {
        width: 50%;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-number span {
        font-size: 18px;
    }
}

/* 了解更多按钮 */
.learn-more {
    text-align: center;
    margin: 40px 0;
}

.learn-more-btn {
    background: #D3F768;
    border: 1px solid #B1CA80;
    color: #1E2C16;
    padding: 10px 40px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* .learn-more-btn:hover {
    background: rgba(177, 202, 128, 0.1);

} */

/* 分类列表 */
.category-list {
    display: flex;
    justify-content: center;
    gap: 85px;
    margin-top: 40px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 78px;
    height: 78px;
    margin-bottom: 12px;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-name {
    font-family: "Microsoft YaHei";
    font-size: 14px;
    color: #83A073;
    text-align: center;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .category-list {
        flex-wrap: wrap;
        gap: 30px;
    }

    .category-item {
        width: calc(33.33% - 20px);
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }
}

/* 产品展示部分 */
.products-section {
    padding: 80px 0;
}

.products-header {
    text-align: center;
}

.section-title {
    font-family: "Hiragino Sans GB";
    font-weight: normal;
    font-size: 48px;
    color: #D3F768;
    margin: 0 auto 30px;
    white-space: nowrap;
}

.section-desc {
    width: 745px;
    font-family: "Hiragino Sans GB";
    font-weight: normal;
    font-size: 18px;
    color: #8EA057;
    line-height: 30px;
    margin: 0 auto;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
        line-height: 56px;
        height: auto;
        width: auto;
    }

    .section-desc {
        width: auto;
        height: auto;
        padding: 0 20px;
        font-size: 16px;
    }
}

/* 产品 Tab 切换 */
.products-tabs {
    margin-top: 60px;
}

.tab-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0 auto;
    max-width: 1200px;
}

.tab-btn {
    background: transparent;
    border: none;
    font-family: "Hiragino Sans GB";
    font-weight: normal;
    font-size: 18px;
    color: #8EA057;
    line-height: 30px;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #D3F768;
    transition: width 0.3s ease;
}

.tab-btn:hover {
    color: #D3F768;
}

.tab-btn.active {
    color: #D3F768;
}

.tab-btn.active::after {
    width: 100%;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .tab-list {
        flex-wrap: wrap;
        gap: 20px;
        padding: 0 20px;
    }

    .tab-btn {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .tab-list {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        text-align: center;
    }
}

/* Tab 内容区域 */
.tab-content {
    margin-top: 60px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* 产品展示区域 */
.product-showcase {
    background-image: url('../images/tab-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    position: relative;
    padding: 80px 0;
    width: 100vw;
    margin-left: calc(-50vw + 49%);
    margin-right: calc(-50vw + 50%);
    background-attachment: fixed;
}

.product-info {
    /*width: 1400px;*/
    margin: 0 auto;
    padding: 0 150px;
}

.product-title {
    /*width: 442px;*/
    height: 60px;
    font-family: "Hiragino Sans GB";
    font-weight: normal;
    font-size: 64px;
    color: #D3F768;
    line-height: 73px;
    margin-bottom: 40px;
    white-space: nowrap;
}

.product-desc {
    width: 947px;
    height: 77px;
    font-family: "Hiragino Sans GB";
    font-weight: normal;
    font-size: 26px;
    color: #4C9640;
    line-height: 52px;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 1400px) {
    .product-info {
        width: 100%;
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .product-showcase {
        min-height: 400px;
        padding: 40px 0;
    }

    .product-title {
        font-size: 36px;
    }

    .product-desc {
        font-size: 18px;
    }
}

/* 核心优势部分 */
.advantages-section {
    padding: 50px 0;
}

.advantages-section .section-title {
    width: 100%;
    height: 45px;
    font-family: "Hiragino Sans GB";
    font-weight: normal;
    font-size: 48px;
    color: #D3F768;
    line-height: 78px;
    text-align: center;
    margin: 0 auto 60px;
}

/* 优势格布局 */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1400px;
    margin: 0 auto;
}

.advantage-item {
    aspect-ratio: 1;
    /* 保持正方形 */
}

/* 背景颜色 */
.bg-dark-green {
    background-color: #1f3812;
}

.footer-main-container {
    background: transparent !important;
    border-top: 1px solid #182B0B !important;
}

.bg-transparent {
    background-color: transparent;
    border: 1px solid rgba(211, 247, 104, 0.1);
}

.bg-light-green {
    background-color: #34a728;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

/* 布局 */
.advantage-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.advantage-item:nth-of-type(4) .advantage-content .advantage-title {
    color: #000;
}

.advantage-item:nth-of-type(4) .advantage-content .advantage-desc {
    color: #000;
}

.advantage-title {
    width: 459px;

    font-family: "Hiragino Sans GB";
    font-weight: normal;
    font-size: 44px;
    color: #D3F768;
    line-height: 73px;
    text-align: center;
    margin-bottom: 25px;
}

.advantage-desc {
    font-family: "Hiragino Sans GB";
    font-size: 18px;
    color: #B1CA80;
    line-height: 30px;
    text-align: center;
    margin-bottom: 25px;
}

.advantage-image {
    width: 170px;
    height: 170px;
}

.advantage-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* 鼠标悬浮效果 */
.advantage-item:hover .advantage-image img {
    /* transform: scale(1.2); */
}

/* 全球网络覆盖部分 */
.global-coverage-section {
    padding: 80px 0;
}

.coverage-header {
    text-align: center;
}

.global-coverage-section .section-title {
    width: 100%;
    height: 45px;
    font-family: "Hiragino Sans GB";
    font-weight: normal;
    font-size: 48px;
    color: #D3F768;
    line-height: 78px;
    text-align: center;
    margin: 0 auto 30px;
}

.global-coverage-section .section-desc {
    width: 745px;
    /*height: 19px;*/
    font-family: "Hiragino Sans GB";
    font-weight: normal;
    font-size: 18px;
    color: #8EA057;
    line-height: 30px;
    margin: 0 auto;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .global-coverage-section .section-title {
        font-size: 36px;
        line-height: 56px;
        height: auto;
        width: auto;
        white-space: normal;
    }

    .global-coverage-section .section-desc {
        width: auto;
        height: auto;
        padding: 0 20px;
        font-size: 16px;
    }
}

/* 全球网络覆盖图片 */
.coverage-image {
    width: 1400px;
    margin: 60px auto 0;
}

.coverage-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 响应式调整 */
@media (max-width: 1400px) {
    .coverage-image {
        width: 100%;
        padding: 0 20px;
    }
}

/* 页样式 */
.footer-content {
    /* padding: 40px 0; */
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo img {
    width: 106px;
    height: 45px;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-nav a {
    color: #B1CA80;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #D3F768;
}

.footer-nav .divider {
    color: #4C9640;
}

.footer-contact {
    text-align: right;
}

.footer-contact .phone,
.footer-contact .email,
.footer-contact .copyright {
    color: #B1CA80;
    margin: 0;
    line-height: 1.5;
}

.footer-contact .copyright {
    color: #83A073;
    font-size: 14px;
    margin-top: 20px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-contact {
        text-align: center;
    }
}

/* 广告合作页面样式 */
.cooperation-main {
    background-color: #0a1a04;
    min-height: 100vh;
}

/* 页面顶部间距，防止被导航栏遮挡 */
.page-spacing {
    padding-top: 60px;
    /* Logo区域 + 导航栏的高度 */
}

/* 确保固定导航栏的背景色 */
.fixed-top {
    background-color: transparent;
}

/* 广告合作页面顶部 */
.cooperation-hero {
    width: 100%;
    height: 680px;
    position: relative;
    overflow: hidden;
    margin-top: -160px;
    /* 抵消掉 header 的高度 */
}

.cooperation-hero .hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 调整导航栏在背景图上的显示 */
.cooperation-main .fixed-top {
    background-color: transparent;
    position: fixed;
    z-index: 10;
}

/* 确保广告合作页面的导航栏背景透明 */
.cooperation-main .top-logo {
    background: transparent;
}

/* 确保滚动时导航栏仍然保持透明 */
.cooperation-main .fixed-top.scrolled {
    background-color: transparent;
}

/* 导航栏边框颜色调整 */
.cooperation-main .nav-border-top,
.cooperation-main .nav-border-bottom {
    background-color: rgba(16, 93, 11, 0.3);
}

/* 广告合作页面导航栏样式覆盖 */
.cooperation-main header.fixed-top {
    background-color: transparent !important;
}

.cooperation-main .bg-success {
    background-color: transparent !important;
}

.cooperation-main .top-logo {
    background: transparent !important;
}

/* 合作页面标题样式 */
.cooperation-title {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cooperation-title h1 {
    width: auto;
    min-width: 249px;
    height: 60px;
    font-family: "Hiragino Sans GB";
    font-weight: normal;
    font-size: 64px;
    color: #CFDE68;
    line-height: 60px;
    margin: 0 auto;
    padding-top: 100px;

}

.cooperation-title p {
    width: auto;
    min-width: 473px;
    height: 20px;
    font-family: "Hiragino Sans GB";
    font-weight: normal;
    font-size: 20px;
    color: #CFDE68;
    line-height: 20px;
    margin: 0 auto;
    margin-top: 80px;

}

/* 响应式调整 */
@media (max-width: 768px) {
    .cooperation-title h1 {
        font-size: 48px;
        width: auto;
        line-height: normal;
    }

    .cooperation-title p {
        font-size: 16px;
        width: auto;
        line-height: normal;
        padding: 0 20px;
    }
}

/* 广告优势部分 */
.ad-advantages {
    padding: 0 0 60px 0;
}

.ad-advantages .section-title {
    font-family: "Hiragino Sans GB";
    font-weight: normal;
    font-size: 48px;
    color: #65B548;
    text-align: center;
    margin-bottom: 40px;
}

.advantages-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.advantage-box {
    width: 300px;
    min-height: 700px;
    border: 1px solid rgba(101, 181, 72, 0.3);
    background: transparent;
    transition: all 0.3s ease;
}

.advantage-box:hover {
    border-color: rgba(101, 181, 72, 0.6);
    box-shadow: 0 0 20px rgba(101, 181, 72, 0.1);
}

/* 广告优势盒子内容样式 */
.ad-box-content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ad-box-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    align-self: center;
}

.ad-box-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ad-box-title {
    font-family: "Hiragino Sans GB";
    font-weight: normal;
    font-size: 24px;
    color: #65B548;
    margin-bottom: 20px;
    align-self: center;
}

.ad-box-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    margin-left: 20px;
}

.ad-box-subtitle .dot {
    width: 6px;
    height: 6px;
    background-color: #65B548;
    border-radius: 50%;
}

.ad-box-subtitle .text {
    font-family: "Hiragino Sans GB";
    font-size: 18px;
    color: #65B548;
}

.ad-box-desc {
    font-family: "Hiragino Sans GB";
    font-size: 16px;
    color: #B1CA80;
    line-height: 24px;
    text-align: left;
    margin-left: 20px;
}

/* 广告主类型部分 */
.type-boxes {
    display: flex;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.type-box {
    width: 280px;
    height: 354px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #0a1a04;
}

.box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(88, 99, 62, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.box-title {
    color: #fff;
    font-size: 24px;
    margin: 0;
    padding: 0 20px;
    /* transform: translateY(20px); */
    transition: transform 0.3s ease;
}

.box-desc {
    color: #fff;
    font-size: 16px;
    margin: 0;
    opacity: 0;
    padding: 20px;
    transform: translateY(20px);
    transition: all 0.3s ease;
    margin-top: 10px;
    display: none;
}

/* 悬浮效果 */
.type-box:hover {
    border: none;
}

.type-box:hover .box-overlay {
    background-color: rgba(149, 197, 81, 1);
}

.type-box:hover .box-title {
    color: #000;
    transform: translateY(-10px);
}

.type-box:hover .box-desc {
    opacity: 1;
    transform: translateY(0);
    color: #000;
    display: block;
}

/* 成功案例部分 */
.success-stories {
    padding: 80px 0;
}

.success-stories .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.stories-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.story-box {
    width: 380px;
    background: rgba(10, 26, 4, 0.6);
    border: 1px solid rgba(101, 181, 72, 0.3);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.story-box:hover {
    border-color: rgba(101, 181, 72, 0.6);
    box-shadow: 0 0 20px rgba(101, 181, 72, 0.1);
}

.story-type {
    color: #D3F768;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.story-details {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.story-details li {
    color: #63E468;
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.story-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #65B548;
}

.story-image {
    width: 125px;
    height: 125px;
    margin: auto auto 0;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .stories-container {
        flex-wrap: wrap;
        padding: 0 20px;
    }

    .story-box {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .story-image {
        display: none;
    }

    .story-box {
        width: 100%;
    }
}

/* 投资页面头部样式 */
.purchase-hero-text {
    color: #D3F768;
    height: 160px;
    padding: 30px 0;
    border-bottom: 1px solid #4F6526;
}

.purchase-hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.purchase-hero-text p {
    margin-top: 20px;
    color: #45AD40;
    font-size: 18px;
}

.purchase-hero-content {
    display: flex;
    justify-content: space-between;
    padding: 30px;
}

.purchase-hero-content-item {
    width: 50%;
}

.purchase-hero-content-item:nth-child(2n) {
    margin-left: 20px;
}

.purchase-hero-content-item-title {
    display: flex;
    align-items: flex-end;
    color: #d3f768;
    margin-bottom: 20px;
}

.purchase-hero-content-item-title h3 {
    font-size: 35px;
    margin: 0;
}

.purchase-hero-content-item-title-key {
    margin-right: 10px;
    font-weight: 700;
}

.purchase-hero-content-item-list {
    color: #70BF65;
    list-style: none;
    padding: 0;
}

.purchase-hero-content-item-list li {
    margin-bottom: 15px;
}

/* 投资计算器部分 */
.purchase-calculator {
    height: 888px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 26, 4, 0.7);
    z-index: 1;
}

.calculator-title {
    color: #D3F768;
    font-size: 48px;
    text-align: center;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-family: "Hiragino Sans GB";
    font-weight: normal;
}

.calculator-box {
    width: 700px;
    background: rgba(10, 26, 4, 0.9);
    border: 1px solid rgba(101, 181, 72, 0.3);
    border-radius: 8px;
    padding: 0 40px;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.calculator-form {
    margin-top: 30px;
}

.input-group {
    margin-bottom: 30px;
}

.input-group label {
    display: block;
    color: #65B548;
    margin-bottom: 10px;
    font-size: 18px;
}

.input-group input[type="text"] {
    width: 100%;
    height: 48px;
    background: transparent;
    border: 1px solid #65B548;
    border-radius: 4px;
    color: #D3F768;
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
}

.calculator-result {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    border-bottom: 1px solid rgba(101, 181, 72, 0.3);
}

.result-label {
    color: #65B548;
    font-size: 18px;
    margin-bottom: 10px;
}

.result-amount {
    color: #D3F768;
    font-size: 46px;
    font-weight: bold;
    font-family: "Martina Plantijn", serif;
}

.slider-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    width: 100%;
    color: #94B17F;
    font-size: 14px;
}

/* 滑块样式 */
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: #105D0B;
    outline: none;
    border-radius: 2px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #65B548;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #65B548;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider::-webkit-slider-thumb:hover {
    background: #4c9640;
}

.slider::-moz-range-thumb:hover {
    background: #4c9640;
}

.animate-number {
    color: #F8FB15;
    font-size: 34px;
    vertical-align: text-top;
    line-height: 10px;
}

/* 如何开始部分 */
.how-to-start {
    padding: 80px 0;
    background: rgba(10, 26, 4, 0.6);
}

.how-to-start .section-title {
    text-align: center;
    /* margin-bottom: 60px; */
}

.process-flow {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-line {
    position: relative;
    padding: 60px 0;
    top: -45px;
}

.line-img {
    width: 100%;
    height: auto;
    display: block;
}

.process-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
}

.node-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    position: relative;
}

.node {
    width: 40px;
    height: 40px;
    background: #286A23;
    border-radius: 50%;
    margin-bottom: 20px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.node-content {
    text-align: center;
    margin-top: 100px;
}

.node-content h3 {
    color: #AEE05E;
    font-size: 20px;
    margin-bottom: 15px;
    font-family: "Hiragino Sans GB";
    font-weight: normal;
}

.node-content p {
    color: #4B8847;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.select2-container--default .select2-selection--single {
    background: transparent !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: transparent !important;

}

.select2-dropdown {
    background: #002c04 !important;

}

.select2-container--default .select2-selection--single {
    border: none !important;
}

.select2-dropdown {
    border: none !important;

}

.select2-container--default .select2-results__option--selected {
    background: transparent !important;

}

/* 响应式调整 */
@media (max-width: 1200px) {
    .process-nodes {
        padding: 0 20px;
    }


}

@media (max-width: 768px) {
    .node-item {
        width: 100%;
    }

    .process-flow {
        padding-bottom: 20px;
    }

    .how-to-start {
        min-height: 820px;
        padding: 0;
    }

    .node-content {
        margin-top: 40px;
    }

    .nodeImg {
        display: none;
    }

    .process-nodes {
        width: 100%;
        padding: 0 40px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        /* flex-direction: column; */
    }

    .type-boxes {
        flex-wrap: wrap;
    }

    .type-box {
        height: 230px;
    }
}