/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Aeonik TRIAL' , 'Arial',  sans-serif;
    /* line-height: 21px; */
    color: #000000;
    background-color: #FFFFFF;
    width: 100%;
    overflow-x: hidden;
    max-width: 1920px;
    margin: 0 auto;
}

/* 导航栏样式 */
.top-nav {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    height: 78px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 60px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-placeholder {
    height: 78px; /* 与导航栏高度一致 */
    width: 100%;
}

.top-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    height: 100%;
}

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

.logo {
    display: flex;
    align-items: center;
    margin-right: 100px;
}

.logo img {
    height: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
}

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

.nav-links a.active {
    font-weight: 700;
    color: #008F1A;
}

.nav-links a:hover {
    color: #008F1A;
}

.nav-button .btn {
    display: inline-block;
    background-color: #008F1A;
    color: #FFFFFF;
    padding: 0 34px;
    height: 48px;
    line-height: 48px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.nav-button .btn:hover {
    background-color: #006312;
}

/* 汉堡菜单图标 */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 10;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #000000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* 汉堡菜单点击动画效果 */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* 移动端导航样式 */
@media (max-width: 992px) {
    
    .nav-links {
        gap: 60px;
    }
    
    .logo {
        margin-right: 60px;
    }
}

/* 平板和小屏幕设备 */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-left {
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-links {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        height: calc(100% - 78px);
        flex-direction: column;
        justify-content: flex-start;
        gap: 30px;
        background-color: #FFFFFF;
        transition: left 0.3s ease;
        z-index: 5;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links li {
        height: 56px;
        line-height: 56px;
        font-size: 16px;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-button .btn {
        padding: 0 20px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
    
    .logo {
        margin-right: 0;
    }
}

/* 小屏幕手机设备 */
@media (max-width: 576px) {
    
    .top-nav {
        height: 60px;
        padding: 0 20px;
    }
    
    .nav-placeholder {
        height: 60px;
    }
    
    .top-nav .container {
        gap: 0;
    }
    
    /* 隐藏顶部导航栏中的按钮 */
    .top-nav .nav-button {
        display: none;
    }
    
    /* 添加导航菜单打开时的背景遮罩 */
    .nav-mask {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: rgba(8, 8, 8, 0.8);
        z-index: 4;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-mask.active {
        left: 0;
        opacity: 1;
    }
    
    .nav-links {
        top: 60px;
        left: auto;
        right: -80%;
        width: 80%;
        height: calc(100vh - 60px);
        gap: 0;
        background-color: #FFFFFF;
        overflow-y: auto;
        border-left: 1px solid #E5E7EB;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }
    
    .nav-links.active {
        left: auto;
        right: 0;
    }
    
    .nav-links a {
        font-size: 16px;
        color: #3D3D3D;
        display: block;
        padding-left: 20px;
    }
    
    .nav-links a.active {
        font-weight: 700;
        color: #008F1A;
        background-color: #E4EFE6;
        border-left: 4px solid #008F1A;
    }
    
    .logo img {
        height: 24px;
    }
    
    /* 移动端的导航按钮在菜单底部显示 */
    .nav-button {
        position: fixed;
        bottom: 30px;
        right: 20px;
        width: calc(80% - 40px);
        text-align: center;
        z-index: 5;
        display: none; /* 当导航打开时显示 */
    }
    
    
    .nav-button .btn {
        width: 100%;
        font-size: 18px;
        padding: 0;
        height: 48px;
        line-height: 48px;
    }
}

/* Banner样式 */
.banner {
    position: relative;
    padding-top: 78px; /* 增加顶部内边距，为固定导航栏留出空间 */
    height: 800px;
    box-sizing: border-box;
    background-image: url(banner-start.c730873f.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner .container {
    display: flex;
    position: relative;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

.one-stop {
    color: #008F1A;
}

.banner-content {
    z-index: 3;
    min-width: 0;
    flex: 43;
    padding: 0px 0 0 240px;
}

.banner-content .star{
    position: absolute;
    top: -20px;
    right: 0;
    width: 60px;
    height: 60px;
}

.banner-content h1 {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 700;
    font-size: 56px;
    max-width: 620px;
    line-height: 1.14;
    margin-bottom: 24px;
    color: #000;
    position: relative;
    text-align: left;
}

.banner-content p {
    font-size: 20px;
    line-height: 1.14;
    margin-bottom: 40px;
    color: #000;
}

.banner .get-started {
    background-color: #008F1A;
    color: #fff;
    font-size: 18px;
    padding: 14px 34px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
    margin-top: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 100;
}

.banner .get-started:hover {
    background-color: #006312;
}

.banner-images {
    position: relative;
    flex: 57;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-banner-image {
    width: 100%;
    height: 100%;
    position: relative;
    padding-right: 40px;
}

.main-banner-image img {
    width: 100%;
    /* height: 100%; */
    /* object-fit: cover; */
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.secondary-banner-image {
    position: absolute;
    bottom: -100px;
    left: 130px;
    width: 231px;
    z-index: 3;
}

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

@media (max-width: 1600px) {
    .banner{
        height: 700px;
    }

    .banner-content h1{
        font-size: 48px;
    }
    .main-banner-image {
        padding-right: 30px;
    }
}

/* Banner响应式样式 */
@media (max-width: 1440px) {
    .banner {
        height: 600px;
    }
    
    .banner .container {
        align-items: center;
    }
    
    .banner-content {
        padding-left: 160px;
        padding-top: 60px;
        padding-bottom: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .banner-content h1 {
        font-size: 42px;
        line-height: 1.2;
    }
    
    .banner-images {
        min-width: 500px;
        align-items: center;
    }

    .main-banner-image {
        padding-right: 20px;
    }

    .banner .get-started {
        margin-top: 40px;
        max-width: 200px;
    }
}

@media (max-width: 1200px) {
    .banner {
        height: 500px;
    }
    
    .banner .container {
        align-items: center;
    }
    
    .banner-content {
        padding-left: 120px;
        padding-top: 40px;
        padding-bottom: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .banner-content h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .banner-content p {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .banner-images {
        min-width: 450px;
        align-items: center;
    }

    .main-banner-image {
        padding-right: 10px;
    }
    
    .secondary-banner-image {
        left: 80px;
        width: 200px;
    }

    .banner .get-started {
        margin-top: 40px;
    }
}

@media (max-width: 992px) {
    .banner {
        height: auto;
        min-height: 520px;
        padding: 100px 0 0px;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
    }
    
    .banner .container {
        flex-direction: column;
        height: auto;
        max-width: 100%;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
        row-gap: 30px;
        padding-bottom: 100px;
    }
    
    .banner-content {
        padding: 30px 0px 0px 0px;
        width: 100%;
        max-width: 600px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
        flex: none;
    }

    .banner-content .star{
        position: absolute;
        top: -20px;
        right: -10px;
        width: 40px;
        height: 40px;
    }

    .banner-content h1 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .banner-content p {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 30px;
        display: block;
    }
    
    .banner-images {
        position: relative;
        width: 100%;
        max-width: 500px;
        min-width: auto;
        order: 2;
        flex: none;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-banner-image {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-banner-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .secondary-banner-image {
        display: none;
    }

    .banner .get-started {
        width: 100%;
        max-width: none;
        margin-top: 30px;
        text-align: center;
        z-index: 1000;
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .banner {
        padding: 100px 0 40px;
        /* background-image: linear-gradient(135deg, rgba(0, 143, 26, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%), url(banner_h5_bg.d38198af.png); */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 520px;
        display: flex;
        align-items: center;
    }

    .banner .container {
        background-image: none;
        height: auto;
        overflow: visible;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 25px;
        max-width: 100%;
        padding: 0px;
        padding-bottom: 100px;
    }
    
    .banner-content {
        padding: 20px 0px 0px 0px;
        width: 100%;
        max-width: 400px;
        text-align: center;
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .banner-content h1 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .banner-content p {
        font-size: 16px;
        margin-bottom: 25px;
        display: block;
        line-height: 1.4;
    }
    
    .banner-images {
        width: 100%;
        max-width: 350px;
        order: 2;
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-banner-image {
        height: 100%;
        width: 100%;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-banner-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .secondary-banner-image {
        display: none;
    }

    .banner .get-started {
        font-size: 16px;
        font-weight: 600;
        margin-top: 25px;
        width: 100%;
        max-width: none;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: 8px;
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .banner {
        padding: 100px 0 30px;
        min-height: 480px;
        display: flex;
        align-items: center;
    }
    
    .banner .container {
        row-gap: 20px;
        padding: 0px;
        padding-bottom: 100px;
    }
    
    .banner-content {
        padding: 15px 0px 0px 0px;
        max-width: 320px;
    }
    
    .banner-content h1 {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .banner-content p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .banner-images {
        padding: 0 10px;
    }
    
    .banner .get-started {
        font-size: 14px;
        height: 44px;
        max-width: none;
        margin-top: 20px;
        width: 100%;
        height: 44px;
        font-size: 15px;
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* 信任证明模块样式 */
.testimonials {
    padding: 60px 0 60px;
    overflow: hidden;
    position: relative;
}

.testimonials h2 {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-size: 20px;
    line-height: 1.14;
    font-weight: 400;
    color: #3D3D3D;
    text-align: center;
    margin: 0 auto 40px;
}

.testimonials-carousel {
    position: relative;
    margin: 0 60px;
    overflow: hidden;
}

.testimonial-mask-left,
.testimonial-mask-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 15%;
    z-index: 3;
    pointer-events: none;
}

.testimonial-mask-left {
    left: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.5) 70%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-mask-right {
    right: 0;
    background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0.5) 70%, rgba(255, 255, 255, 0) 100%);
}

.testimonials-container {
    display: flex;
    gap: 20px;
    padding: 10px 20px;
    width: fit-content;
    overflow-x: visible;
    -ms-overflow-style: none;
    scrollbar-width: none;
    animation: scroll 60s linear infinite;
    margin-left: 60px;
}

/* .testimonials-container:hover {
    animation-play-state: paused;
} */

.testimonials-container::-webkit-scrollbar {
    display: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    width: auto;
    min-width: 150px;
    max-width: 450px;
    border-radius: 8px;
    padding: 15px 20px;
    position: relative;
    height: 48px;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

.testimonial-card.yellow {
    background-color: #FFFAEB;
}

.testimonial-card.purple {
    background-color: #F9F5FF;
}

.testimonial-card.blue {
    background-color: #EFF8FF;
}

.testimonial-card.green {
    background-color: #ECFDF3;
}

.testimonial-card.pink {
    background-color: #FFF1F3;
}

.testimonial-author {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 0;
}

.testimonial-author img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card.yellow .testimonial-author {
    border: 2px solid #EDFFF0;
}

.testimonial-card.purple .testimonial-author {
    border: 2px solid #E9D7FE;
}

.testimonial-card.blue .testimonial-author {
    border: 2px solid #B2DDFF;
}

.testimonial-card.green .testimonial-author {
    border: 2px solid #A6F4C5;
}

.testimonial-card.pink .testimonial-author {
    border: 2px solid #FECDD6;
}

.testimonial-content {
    margin-bottom: 0;
    flex: 1;
    overflow: hidden;
}

.testimonial-content p {
    font-size: 14px;
    line-height: 1.4;
    color: #3D3D3D;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 移动端适配 */
@media (max-width: 992px) {
    .testimonials-carousel {
        margin: 0 40px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 0;
        position: relative;
    }
    
    .testimonials h2 {
        font-size: 16px;
        line-height: 24px;
        margin: 0 30px 20px;
        text-align: center;
    }
    
    .testimonials-carousel {
        margin: 0;
        padding: 0;
    }
    
    .testimonials-container {
        margin-left: 20px;
        gap: 10px;
        animation: scroll 60s linear infinite;
    }
    
    .testimonial-card {
        /* min-width: 200px; */
        /* max-width: 200px; */
        height: 36px;
        display: flex;
        align-items: center;
        padding: 10px 12px;
        border-radius: 6px;
    }

    .testimonial-content p {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .testimonial-author {
        width: 36px;
        height: 36px;
        margin-right: 10px;
    }
    
    .testimonial-mask-left,
    .testimonial-mask-right {
        display: none;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }
}

@media (max-width: 576px) {
    .testimonials h2 {
        font-size: 14px;
        margin: 0 15px 15px;
    }
    
    .testimonial-card {
        padding: 8px 10px;
    }
    
    .testimonial-content p {
        font-size: 11px;
    }
    
    .testimonial-author {
        width: 32px;
        height: 32px;
        margin-right: 8px;
    }
}

/* 价值主张模块 */
.value-proposition {
    position: relative;
    padding: 60px 240px;
    background: #FFFFFF;
    overflow: hidden;
    color: #fff;
}

.value-title {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.14em;
    color: #fff;
    background-image: url("value-bg.a3e6f3eb.png");
    background-size: 100% 100%;
    padding: 43px 73px;
    border-radius: 16px 16px 0 0;
}

.value-cards {
    display: flex;
    position: relative;
    /* background: linear-gradient(180deg, #008640 0%, #04612E 100%); */
}

.value-cards .simplicity {
    background: radial-gradient(circle at bottom right, #15D467, #187B45);
    border-radius: 0 0 0 32px;
}

.value-cards .visibility {
    background: linear-gradient(to top, #008640, #04612E);
}

.value-cards .scalability {
    background: linear-gradient(to left, #008640, #04612E);
    border-radius: 0 0 32px 0;
}

.card-header {
    margin-bottom: 10px;
}

.value-card {
    flex: 1;
    padding: 40px 10px 30px 30px;
    overflow: hidden;
    line-height: 30px;
}

.value-card h3 {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 700;
    font-size: 28px;
    margin: 0;
}

.value-card p {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    margin: 0;
}

.icon-container {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-container.yellow {
    background-color: #FFFAEB;
}

.icon-container.blue {
    background-color: #EFF8FF;
}

.icon-container.purple {
    background-color: #F9F5FF;
}

.icon-container img {
    width: 64px;
    height: 64px;
}

@media (max-width: 1366px) {
    .value-proposition {
        padding: 60px;
    }
}

@media (max-width: 1200px) {
    .value-proposition {
        padding: 60px 120px;
    }
    
    .value-title {
        font-size: 42px;
        padding: 40px 60px;
    }
    
    .value-card h3 {
        font-size: 24px;
    }
    
    .value-card p {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .value-proposition {
        padding: 60px 60px;
    }
    
    .value-title {
        font-size: 36px;
        padding: 30px 40px;
    }
    
    .value-cards {
        flex-direction: column;
        gap: 0;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .value-cards .simplicity {
        border-radius: 0;
        /* margin-top: 0; */
    }
    .value-cards .scalability {
        border-radius: 0 0 16px 16px;
    }
}

@media (max-width: 768px) {
    .value-proposition {
        padding: 20px 16px 15px;
    }
    
    .value-title {
        font-size: 24px;
        padding: 10px 16px;
        background-image: url("value-bg-h5.e1055db2.png");
        background-size: cover;
        background-repeat: no-repeat;
        height: 75px;
    }
    
    .value-cards {
        background: linear-gradient(180deg, #008640 0%, #04612E 100%);
        border-radius: 0 0 16px 16px;
        padding-bottom: 20px;
        margin-top: -1px;
    }
    
    .value-cards .simplicity,
    .value-cards .visibility,
    .value-cards .scalability {
        background: transparent;
    }
    
    .value-card {
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 20px;
    }
    
    .card-header {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
        padding: 0 20px;
        gap: 10px;
    }
    
    .value-card h3 {
        font-size: 16px;
        font-weight: 700;
    }
    
    .value-card p {
        font-size: 14px;
        line-height: 21px;
        padding: 0 20px;
    }
    
    .icon-container {
        width: 28px;
        height: 28px;
        margin: 0;
    }
    
    .icon-container img {
        width: 28px;
        height: 28px;
    }
}

/* 零售行业解决方案模块 */
.retail-container {
    display: flex;
    gap: 50px;
    height: 600px;
    overflow: hidden;
}

.retail-content {
    max-width: 396px;
}

.retail-title {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.14;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.retail-description {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.14;
    color: #3D3D3D;
    margin-bottom: 60px;
    text-align: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #F6FEF9;
    padding: 24px;
    border-radius: 16px;
    transition: transform 0.3s ease;
    height: 96px;
}

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

.feature-icon {
    width: 50px;
    /* height: 50px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: auto;
}

.feature-item h3 {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.14;
    color: #000000;
    margin: 0;
    min-width: 0;
    flex: 1;
}

.retail-image {
    width: 50%;
}

.image-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(-200px);
}

.overlay-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: auto;
}

.arrow-button {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.arrow-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.arrow-button img {
    width: 20px;
    height: 20px;
}


.feature-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 16px;
}

.retail-description {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.14;
    color: #000000;
    margin-bottom: 40px;
}

@media (max-width: 1366px) {
    .retail-container {
        gap: 20px;
    }

    .main-image {
        transform: translateY(0);
    }
}


@media (max-width: 1200px) {
    .retail-title {
        font-size: 42px;
    }
    
    .retail-description {
        font-size: 18px;
    }
    
    .feature-item h3 {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .retail-container {
        flex-direction: column;
    }
    
    .retail-content {
        width: 100%;
    }
    
    .retail-image {
        width: 100%;
        order: -1;
        margin-bottom: 30px;
    }
    
    .retail-title {
        font-size: 36px;
    }
    
    .retail-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .retail-image-container img {
        content: url("retail-mobile-image.5babaae3.png");
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-item h3 {
        font-size: 16px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-items {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0;
    }

    .feature-item {
        width: 100%;
        padding: 20px;
    }

    .feature-item h3 {
        font-size: 16px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-image {
        display: block;
    }
    
    .desktop-image {
        display: none;
    }
    
    .retail-industry-solution {
        padding: 40px 0;
        background-color: #F9FAFB;
    }
    
    .retail-title {
        font-size: 24px;
        margin: 60px 0 10px;
        font-weight: 700;
        text-align: center;
        /* background-color: #F9FAFB; */
    }
    
    .retail-description {
        font-size: 14px;
        margin-bottom: 15px;
        padding: 0;
        text-align: center;
        color: #3D3D3D;
    }
    
    .retail-container {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .retail-content {
        order: 1;
        padding: 8px;
        background-color: #fff;
    }
    
    .retail-image-container {
        margin: 0;
        padding: 0;
        flex: 1;
        min-width: 0;
    }
    
    .retail-image {
        order: 0;
        margin: 0;
    }
    
    .main-image {
        max-width: none;
        margin: 0;
        border-radius: 0;
    }
    
    .feature-items {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0;
    }
    
    .feature-item {
        padding: 15px 10px;
        flex-direction: row;
        align-items: center;
        background-color: #F6FEF9;
        border-radius: 4px;
        gap: 12px;
    }
    
    .feature-item h3 {
        font-size: 14px;
        margin: 0;
        font-weight: 700;
    }
    
    .feature-icon {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .feature-icon img {
        width: 100%;
        height: auto;
    }
    
    .free-trial-btn-container {
        margin: 0;
        display: flex;
        justify-content: center;
        margin: 0!important;
    }
    
    .free-trial-btn-container .free-trial-btn {
        width: calc(100% - 50px);
        height: 48px;
        font-size: 16px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #008F1A;
        color: #FFFFFF;
        text-decoration: none;
        font-weight: 700;
        margin: 0;
    }
}

/* 产品功能点模块 */
.product-features {
    position: relative;
    padding: 80px 240px;
    /* background-color: #F9FAFB; */
    overflow: hidden;
}

.features-intro {
    text-align: center;
    margin-bottom: 80px;
}

.features-title {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1.14;
    color: #000000;
    margin-bottom: 20px;
}

.features-description {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    color: #3D3D3D;
    max-width: 800px;
    margin: 0 auto;
}

/* 通用样式 */
.free-trial-btn {
    background-color: #008F1A;
    color: #FFFFFF;
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 700;
    font-size: 28px;
    width: 500px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    text-decoration: none;
    margin-top: 40px;
    transition: background-color 0.3s ease;
}

.free-trial-btn:hover {
    background-color: #006312;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.67;
    color: #3D3D3D;
    list-style: disc;
    margin-left: 20px;
}

.free-trial-btn-container {
    display: flex;
    justify-content: center;
    margin-bottom: 150px;
}

@media (max-width: 1366px) {
    .product-features {
        padding: 60px 60px;
    }
}

@media (max-width: 1200px) {
    .product-features {
        padding: 80px 120px;
    }
    
    .features-title {
        font-size: 50px;
    }
    
    .features-description {
        font-size: 20px;
    }
    
    .free-trial-btn {
        width: 400px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .product-features {
        padding: 60px 60px;
    }
    
    .features-intro {
        margin-bottom: 60px;
    }
    
    .features-title {
        font-size: 42px;
    }
    
    .features-description {
        font-size: 18px;
    }
    
    .free-trial-btn {
        width: 350px;
        height: 56px;
        font-size: 22px;
    }
    
    .feature-list li {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .product-features {
        padding: 0 16px;
    }
    
    .features-intro {
        margin-bottom: 40px;
    }
    
    .features-title {
        font-size: 36px;
    }
    
    .features-description {
        font-size: 16px;
    }
    
    .free-trial-btn {
        width: calc(100% - 66px);
        height: 50px;
        font-size: 16px;
        padding: 10px 20px;
        margin: 0;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }
    
    .feature-list li {
        font-size: 15px;
        margin: 0;
    }
  
}

.retail-image-container {
    flex: 1;
    display: flex;
    align-items: start;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
}

.retail {
    background-color: #F9FAFB;
}

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

.mobile-image {
    display: none;
}

.desktop-image {
    display: block;
}



/* 进销存部分 */
.inventory-container {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    background-color: #F9FAFB;
    border-radius: 33px;
    padding: 40px;
}

.inventory-content {
    padding-top: 30px;
    flex: 1;
}

.inventory-title {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
    color: #000000;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.inventory-title img {
    width: 64px;
    height: 64px;
    margin-right: 10px;
}

.inventory-description {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 38px;
    color: #000000;
    margin-bottom: 30px;
}

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

.inventory-demo img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: contain;
}

@media (max-width: 992px) {
    .inventory-container {
        flex-direction: column;
        padding: 25px;
    }
    
    .inventory-content {
        padding-top: 0;
        order: 1;
    }
    
    .inventory-demo {
        order: 2;
        margin-top: 30px;
        width: 100%;
    }
    
    .inventory-demo img {
        max-width: 100%;
        height: auto;
    }
    
    .inventory-title {
        font-size: 28px;
    }
    
    .inventory-description {
        font-size: 28px;
    }
    
    .inventory-title img {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 768px) {
    .inventory-container {
        padding: 20px 20px;
        margin-bottom: 15px;
        flex-direction: column;
        gap: 10px;
        background-color: #F9FAFB;
        border-radius: 16px;
    }
    
    .inventory-demo {
        order: 0 !important;
        margin-top: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .inventory-content {
        order: 1 !important;
        padding-top: 0;
        width: 100%;
    }
    
    .inventory-title {
        font-size: 16px;
        font-weight: 700;
    }
    
    .inventory-description {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 10px;
    }
    
    .inventory-title img {
        width: 32px;
        height: 32px;
    }
    
    .feature-list {
        padding-left: 20px;
    }
    
    .feature-list li {
        /* margin-bottom: 10px; */
    }
}

/* Customer Feedback Section */
.customer-feedback {
    padding: 80px 0;
    background: #FEF0C7;
    color: #000000;
    /* height: 600px; */
    overflow: hidden;
    position: relative;
}

.customer-feedback .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.customer-feedback h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 64px;
    text-align: center;
    margin: 0;
}

.customer-feedback .subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    max-width: 720px;
    margin: 0;
}

.feedback-cards {
    /* width: 100%; */
    margin: 0 60px;
}

/* 客户反馈模块无缝滚动样式 */
.feedback-cards-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    gap: 16px; /* 减小卡片间距 */
    /* 移除CSS动画，由JavaScript控制 */
    padding: 20px 0;
    will-change: transform; /* 优化性能 */
    width: 100%; /* 确保容器有足够的宽度 */
}

.feedback-card {
    flex: 0 0 auto;
    width: 500px; /* 减小卡片宽度，使更多卡片可见 */
    box-sizing: border-box;
    min-height: 280px; /* 减小卡片最小高度 */
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px; /* 减小内边距 */
    display: flex;
    flex-direction: column;
    gap: 16px; /* 减小内部元素间距 */
    transition: all 0.3s ease;
    margin-right: 16px; /* 减小右侧间距 */
    position: relative;
}

.feedback-card::before {
    display: none; /* 隐藏卡片右上角的数字标记 */
}

/* .feedback-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.18);
} */

.stars {
    display: flex;
    gap: 4px;
}

.stars img {
    width: 20px;
    height: 20px;
}

.feedback-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px; /* 减小字体大小 */
    line-height: 20px; /* 减小行高 */
    color: #666666;
    margin: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.customer-avatar {
    width: 40px; /* 减小头像尺寸 */
    height: 40px; /* 减小头像尺寸 */
    border-radius: 50%;
    object-fit: cover;
}

.customer-details h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px; /* 减小字体大小 */
    line-height: 20px; /* 减小行高 */
    color: #1A1A1A;
    margin: 0;
}

.customer-details p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #666666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    
    .feedback-cards {
        margin: 0 40px;
    }
    
    .feedback-cards-container {
        margin-left: 40px;
    }
    
    .feedback-card {
        min-height: 380px;
    }
}

@media (max-width: 992px) {
    .customer-feedback {
        padding: 60px 40px;
    }

    .customer-feedback h2 {
        font-size: 36px;
        line-height: 48px;
    }

    .customer-feedback .subtitle {
        font-size: 15px;
        line-height: 22px;
    }

    .feedback-cards {
        margin: 0 20px;
    }
    
    .feedback-card {
        width: 280px; /* 在平板上进一步减小卡片宽度 */
        min-height: 250px;
        padding: 20px;
    }

    .feedback-text {
        font-size: 13px;
        line-height: 18px;
    }

    .customer-details h3 {
        font-size: 13px;
    }

    .customer-details p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .customer-feedback {
        padding: 40px 16px; /* 减小内边距 */
    }

    .customer-feedback .container {
        gap: 10px;
    }

    .customer-feedback h2 {
        font-size: 22px;
        line-height: 1;
    }

    .customer-feedback .subtitle {
        font-size: 14px;
        color: #3D3D3D;
        margin-bottom: 10px;
    }

    .feedback-cards {
        margin: 0 5px; /* 减小边距 */
    }

    .feedback-cards-container {
        padding: 0;
    }

    .feedback-card {
        width: 325px; /* 移动端使用更小的卡片 */
        min-height: 200px;
        padding: 15px;
        margin: 0;
    }

    .feedback-text {
        font-size: 12px;
        line-height: 18px;
        -webkit-line-clamp: 5; /* 减少行数 */
        overflow: hidden;
    }

    .customer-avatar {
        width: 32px;
        height: 32px;
    }

    .customer-details h3 {
        font-size: 14px;
        line-height: 1;
    }

    .customer-info {
        gap: 5px;
        align-items: center;
    }

    .customer-info img {
        width: 24px;
        height: 24px;
    }

    .stars img {
        width: 16px;
        height: 16px;
    }
    
    .feedback-card::before {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

/* Input Module */
.input-module {
    padding: 120px 0;
    background: #FFFFFF;
    position: relative;
}

.input-module .container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.input-form {
    background: #F8F9FC;
    border-radius: 32px;
    padding: 60px 150px 34px;
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.14;
    color: #000000;
    margin-bottom: 20px;
}

.privacy-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.privacy-notice p {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.14;
    color: #000000;
    margin: 0;
}

.lock-icon {
    width: 20px;
    height: 20px;
}

.form-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border: 1px solid #EAECF5;
    border-radius: 16px;
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.14;
    color: #000000;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #B0B0B0;
}

.form-input:focus {
    border-color: #008F1A;
    outline: none;
}

.phone-group {
    display: flex;
}

/* 国家代码下拉菜单样式 */
.country-code {
    position: relative;
    display: inline-block;
    width: 130px;
}

.selected-code {
    display: flex;
    align-items: center;
    height: 100%;
    flex: 1;
    justify-content: space-between;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 16px 0 0 16px;
    cursor: pointer;
}

.selected-code span {
    font-size: 14px;
    color: #333;
}

.phone-input {
    border-radius: 0 16px 16px 0;
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.country-code.active .dropdown-arrow {
    transform: rotate(180deg);
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    max-height: 300px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
}

.country-code.active .country-dropdown {
    display: block;
}

.search-box {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.search-box input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.country-list {
    max-height: 250px;
    overflow-y: auto;
}

.country-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.country-item:hover {
    background-color: #f5f5f5;
}

.country-name {
    font-size: 14px;
    color: #333;
}

.country-item .country-code {
    font-size: 14px;
    color: #666;
    width: auto;
    margin: 0;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .country-dropdown {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 320px;
        max-height: 80vh;
        border-radius: 16px;
    }
    
    .country-code {
        width: 100px;
    }
    
    .selected-code {
        padding: 6px 8px;
        border-radius: 8px 0 0 8px;
    }
    
    .selected-code span {
        font-size: 12px;
    }
    
    .country-item {
        padding: 8px 12px;
    }
    
    .country-name, .country-item .country-code {
        font-size: 12px;
    }

    .search-box {
        padding: 15px;
    }

    .search-box input {
        padding: 10px;
        font-size: 16px;
    }

    .country-list {
        max-height: calc(80vh - 60px);
    }
}

.submit-btn {
    width: 100%;
    height: 60px;
    background: #008F1A;
    border: 1px solid #008F1A;
    border-radius: 16px;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.14;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #006312;
}

.whatsapp-button {
    position: fixed;
    bottom: 250px;
    right: 100px;
    width: 80px;
    height: 100px;
    background-color: #101828;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s ease;
    /* padding: 12px 20px; */
}

.whatsapp-button img {
    width: 45px;
    height: 45px;
}

.whatsapp-button .whatsapp-text {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.14;
    color: #FFFFFF;
    text-align: center;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 60px;
        height: 66px;
        right: 12px;
        bottom: 220px;
        border-radius: 16px;
        gap: 4px;
    }
    
    .whatsapp-button img {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-button .whatsapp-text {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .input-module {
        padding: 0;
    }
    
    .input-module .container {
        width: 100%;
        max-width: none;
        padding: 0;
        margin: 0;
    }
    
    .input-form {
        width: 100%;
        max-width: none;
        padding: 40px 32px;
        border-radius: 0;
        margin: 0;
        box-shadow: none;
    }
    
    .form-header h2 {
        font-size: 28px;
    }
    
    
    .privacy-notice p {
        font-size: 12px;
    }

    .form-content {
        gap: 20px;
    }
    
    .form-input {
        font-size: 14px;
        height: 40px;
        border-radius: 8px;
    }

    .phone-input {
        border-radius: 0 8px 8px 0;
    }
    
    .country-code {
        width: 80px;
    }
    
    .country-code span {
        font-size: 12px;
    }
    
    .submit-btn {
        margin-top: 20px;
        height: 48px;
        width: 100%;
        font-weight: 700;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        border-radius: 8px;
    }
}

/* Footer Module */
.footer {
    background: #3D3D3D;
    padding: 40px 0;
    color: #FFFFFF;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

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

.footer-link {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.14;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #008F1A;
}

.separator {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.14;
    color: #FFFFFF;
}

.copyright {
    text-align: center;
}

.copyright p {
    font-family: 'Hei', Arial, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    color: #FFFFFF;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 15px 0;
    }

    .footer .container {
        padding: 0;
    }

    .footer-content {
        gap: 10px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-link {
        font-size: 12px;
    }
    
    .separator {
        font-size: 12px;
    }
    
    .copyright p {
        font-size: 10px;
    }
}

/* 功能价值模块 */
.feature-values {
    padding: 80px 0;
    background-color: #FFFFFF;
    overflow: hidden;
}

.feature-values .container {
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0 60px; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-values .subtitle {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.14em;
    color: #3D3D3D;
    text-align: center;
    margin-bottom: 40px;
}

.feature-values .title {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.14em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}

.feature-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.feature-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.feature-card {
    background-color: #F9FAFB;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(25% - 23px); /* 一行显示四个卡片，计算宽度并考虑间隔 */
    min-width: 320px;
    max-height: 430px; /* 固定高度为420px */
    padding: 20px 20px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    height: 200px; /* 固定图片区域高度 */
    overflow: hidden;
    border-radius: 16px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding-top: 20px;
    flex: 1;
}

.card-content p {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5em;
    color: #3D3D3D;
}

.card-content h3 {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.14em;
    color: #000000;
    margin-bottom: 15px;
}

.feature-points {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.feature-points li {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #3D3D3D;
    margin-bottom: 0;
    position: relative;
    padding-left: 0;
}



/* 功能价值模块响应式 */
@media (max-width: 1400px) {
    .feature-card {
        flex: 0 0 calc(25% - 23px);
    }

    .feature-grid {
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .feature-values .container {
        padding: 0 40px;
    }
    
    .feature-values .title {
        font-size: 42px;
    }
    
    .feature-grid {
        gap: 10px;
    }
    
    .feature-card {
        flex: 0 0 calc(25% - 19px);
    }
}

@media (max-width: 992px) {
    .feature-values {
        padding: 80px 0;
    }
    
    .feature-values .container {
        padding: 0 30px;
    }
    
    .feature-values .title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .feature-values .subtitle {
        font-size: 18px;
    }
    
    .card-content {
        padding: 25px;
    }
    
    .card-content h3 {
        font-size: 18px;
    }
    
    .card-image {
        height: 200px;
    }
    
    .feature-card {
        flex: 0 0 calc(50% - 15px); /* 一行两个卡片 */
    }
    
    .feature-grid {
        flex-wrap: wrap;
        overflow-x: visible;
    }
}

@media (max-width: 768px) {
    .feature-values {
        padding: 85px 0 40px;
    }

    .feature-values .container {
       padding: 0 16px;
       max-width: 100%;
    }
    
    .feature-values .title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .feature-values .subtitle {
        font-size: 14px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .feature-card {
        flex: 0 0 100%; /* 移动端一行一个卡片，满宽 */
        background-color: #F9FAFB;
        border-radius: 8px;
        padding: 10px;
        min-width: auto;
        box-shadow: none;
    }

    .card-image {
        height: 150px; /* 调整图片区域高度与设计稿匹配 */
        border-radius: 8px;
        overflow: hidden;
    }
    
    .feature-grid {
        gap: 15px;
        flex-direction: column;
        flex-wrap: nowrap;
        overflow-x: visible;
        padding: 0;
    }

    .card-content {
        padding: 16px 0 0;
        min-height: 0;
        flex: 1;
    }

    .card-content h3 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 4px;
    } 
    
    .feature-points {
        padding-left: 20px;
    }
    
    .feature-points li {
        font-size: 14px;
        padding-left: 0;
        color: #3D3D3D;
    }
    
    .card-content p {
        font-size: 14px;
        color: #3D3D3D;
    }
}

/* Security Features Section */
.security-features {
    margin: 0 auto;
    padding: 80px 240px;
    background-image: url('img_safe.8412e8fd.png');
    background-size: cover;
    background-position: 0 0;
    position: relative;
    overflow: hidden;
}

.security-content {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.security-placeholder {
    flex: 1;
}

.security-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* max-width: 500px; */
    flex: 1;
    margin-right: 60px;
    padding: 0 20px;
}

.security-card {
    padding: 30px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: transparent;
}

.security-card:hover {
    transform: translateY(-5px);
}

.security-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    color: #000;
    /* background: #fff; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-text {
    flex: 1;
}

.security-icon img {
    width: 100%;
    height: 100%;
}

.security-card h3 {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.14;
    color: #FFFFFF;
    margin-bottom: 15px;
    margin-top: 0;
}

.security-card p {
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* .download-box{
    width: 100%;
    height: 340px;
}
.download-box img{
    width: 100%;
    height: 340px;
} */
.download-box{
    width: 100%;
    background: url(download_bg.38dcd693.png) no-repeat 100% 100%;
    background-size: cover;
    height: 340px;
}
.download-box .container{
    max-width: 1400px;
    margin: 0 auto;
}
.download-box .text{
    margin-left:80px;
    padding-top:80px;
    width: 631px;
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: bold;
    font-size: 38px;
    color: #FFFFFF;
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.download-box .dowmload-btn{
    margin-left:80px;
    margin-top:40px;
    width: 100%;
}
.download-box .dowmload-btn img{
    height:54px;
    margin-left:15px;
    width: 182px;
    cursor: pointer;
}
.download-box .dowmload-btn img.google-btn{
    margin-left:0;
}

.mask{
    display: none;
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.app-download-dialog,.exe-download-dialog{
    display: none;
    position: fixed;
    top: 50%;
    left:50%;
    margin-left:-300px;
    margin-top:-275px;
    width: 600px;
    height: 573px;
    background: #FFFFFF;
    border-radius: 16px 16px 16px 16px;
    z-index: 9999;
    padding: 30px 0;
}
.app-download-dialog .title,.exe-download-dialog .title{
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: bold;
    font-size: 38px;
    color: #030303;
    text-align: center;
    
}
.app-download-dialog .sub-title,.exe-download-dialog .sub-title{
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #3D3D3D;
    text-align: center;
    margin-top:10px;
}
.app-download-dialog .btn-box,.exe-download-dialog .btn-box{
    text-align: center;
}
.app-download-dialog .btn-box img,.exe-download-dialog .btn-box img{
    height:54px;
    margin-left:15px;
    width: 182px;
    cursor: pointer;
    text-align: center;
    border: 1px solid #000000;
    border-radius: 8px 8px 8px 8px;
}
.app-download-dialog .footer-content,.exe-download-dialog .footer-content{
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #3D3D3D;
    text-align: center;
    margin-top:30px;
}
.app-download-dialog .download-rqcode,.exe-download-dialog .download-rqcode{
    margin:40px auto;
    width: 210px;
    height: 210px;
    background: #3D3D3D;
    text-align: center;
}
.app-download-dialog .download-rqcode img{
    width: 210px;
    height: 210px;
}
.exe-download-dialog .download-rqcode{
    cursor: pointer;
    background: #F0F9FF;
    padding-top:62px;
}
.exe-download-dialog .download-rqcode img{
    background: #F0F9FF;
    text-align: center;
    width:48px;
    height: 48px;
}
.exe-download-dialog .download-rqcode .exe-name{
    display: block;
    font-family: 'Aeonik TRIAL', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #006DFF;
    text-align: center;
    margin-top:20px;
}
/* Responsive Styles for Security Section */

@media (max-width: 1600px) {
    .security-features {
        padding: 60px 0;
    }
    .download-box{
        height: 550px;
        background-position: 66% 100%;
    }
    .download-box .text{
        width: 550px;
        padding-top:130px;
    }
    .download-box .dowmload-btn img{
        display: inline-block;
        width: 182px;
        height: 54px;
        margin-left:10px;
        margin-top: 15px;
    }
}


@media (max-width: 1366px) {
    .security-features {
        padding: 60px 0;
    }
    .download-box{
        height: 500px;
        background-position: 66% 100%;
    }
    .download-box .text{
        width: 500px;
        padding-top:20px;
    }
    .download-box .dowmload-btn img{
        display: block;
        width: 182px;
        height: 54px;
        margin-left:0;
        margin-top: 15px;
    }
}

@media (max-width: 1200px) {
    .security-grid {
        margin-right: 40px;
        /* gap: 25px; */
    }
    
    .security-card h3 {
        font-size: 24px;
    }
    
    .security-card p {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .download-box{
        height: 500px;
        background-position: 66% 100%;
    }
    .download-box .text{
        width: 500px;
        padding-top:20px;
    }
    .download-box .dowmload-btn img{
        width: 182px;
        height: 54px;
        display: block;
        margin-left:0;
        margin-top: 15px;
    }
    .security-features {
        padding: 60px 0;
    }
    
    .security-content {
        justify-content: center;
    }
    
    .security-grid {
        margin-right: 0;
        max-width: 500px;
    }
    
    .security-card {
        padding: 25px;
    }
    
    .security-icon {
        width: 56px;
        height: 56px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .security-icon img {
        width: 28px;
        height: 28px;
    }
    
    .security-card h3 {
        font-size: 24px;
    }
    
    .security-card p {
        color: rgba(255, 255, 255, 0.8);
    }
}

@media (max-width: 768px) {

    .app-download-dialog{
        width: 80%;
        margin-left: -40%;
    }
    .download-box{
        height: 579px;
        width: 100%;
        background: url(download_bg_moble.5b20b645.png) no-repeat center;
        background-size: cover;
    }
    .download-box .text{
        width: 100%;
        padding:20px 20px 0 20px;
        text-align: center;
        margin-left:0 ;
    }
    .download-box .dowmload-btn{
        margin-left:0px;
        text-align: center;
    }
    .download-box .dowmload-btn img{
        width: 182px;
        height: 54px;
        margin-left:20px;
        display: inline-block;
    }
    .download-box .dowmload-btn img.google-btn{
        width: 182px;
        height: 54px;
        display: inline-block;
    }
    .download-box .dowmload-btn img.windows-btn{
        display: none;
    }

    .security-placeholder {
        display: none;
    }

    .security-features {
        padding: 30px 0;
        background-image: linear-gradient(to bottom, rgba(0, 99, 18, 0.4) 0%, rgba(0, 99, 18, 1) 80%), url('img_safe.8412e8fd.png');
        background-size: cover;
        background-position: -10px 84px;
    }
    
    .security-grid {
        /* gap: 30px; */
        padding: 0 15px;
    }
    
    .security-card {
        padding: 0;
        gap: 15px;
    }
    
    .security-card h3 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #FFFFFF;
    }
    
    .security-card p {
        font-size: 14px;
        line-height: 21px;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .security-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background-color: #FFFFFF;
    }
    
    .security-icon img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 500px) {
    .app-download-dialog{
        height:610px;
    }
}

@media (max-width: 400px) {
    .download-box .dowmload-btn{
        margin-top: 30px;
        padding: 10px;
    }
    .download-box .text{
        font-size: 29px;
        width: 100%;
        padding:10px;
        text-align: center;
        margin-left:0 ;
    }
    .download-box .dowmload-btn img{
        margin-left:0px;
    }
}

@media (max-width: 340px) {
    .download-box .dowmload-btn{
        padding: 10px;
        margin-top: 25px;
    }
    .download-box .text{
        font-size: 26px;
    }
}