﻿@charset "UTF-8";

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-VF.woff2') format('woff2'), url('/assets/fonts/montserrat-variablefont_wght.woff.woff') format('woff');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-Italic-VF.woff2') format('woff2'), url('/assets/fonts/montserrat-italic-variablefont_wght.woff') format('woff');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --font-sans: 'Montserrat', 'Noto Sans SC Local', system-ui, -apple-system, 'Segoe UI', 'Microsoft YaHei', Arial, Helvetica, sans-serif;
    --font-mono: 'Roboto Mono Local', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

html, body {
    padding: 0;
    margin: 0;
    background: #FFF;
    color: #333;
    height: 100%;
    font-family: var(--font-sans);
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased; /* 只在 Chrome/Safari 有效 */
    -moz-osx-font-smoothing: grayscale; /* 只在 macOS Firefox 有效 */
    /* 防止浏览器自己“加粗/倾斜”导致各浏览器渲染差异 */
    font-synthesis-weight: none;
    font-synthesis-style: none;
}

code, pre, kbd, samp, .numbers {
    font-family: var(--font-mono);
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #2495e0;
}

ul {
    padding-left: 20px;
    line-height: 1.8;
}

hr {
    background: #DBDBDB;
    border: 0;
    height: 0.5px;
    margin: 20px 0;
}

main {
    min-height: calc(100% - 40px);
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

footer {
    text-align: left;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 12px;
    background: #a02337;
    color: #fff;
}

    footer p {
        margin: 0;
        padding: 10px 0;
    }

    footer .footer-content {
        max-width: 1400px;
        padding: 0 20px;
        margin: auto;
        position: relative;
    }

    footer .icon-group {
        position: absolute;
        right: 20px;
        top: 50px;
    }

        footer .icon-group a > img {
            width: 30px;
            filter: brightness(0) invert(1);
        }

        footer .icon-group a {
            margin-left: 10px;
        }

.bold {
    font-weight: bold;
}

.page-header {
    width: 100%;
    padding: 15px 0 15px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    position: fixed;
    z-index: 2;
}

nav {
    width: 50%;
}

.nav-bar {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    height: 50px;
    display: flex;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

    .nav-bar .logo-img {
        width: 200px;
        vertical-align: middle;
    }

nav a {
    font-size: 16px;
    color: #333;
}

    nav a.active {
        border-bottom: 4px solid #A02337;
        font-weight: bold;
    }
/* 设定导航菜单的基础样式 */
.nav-menu {
    list-style-type: none;
    padding: 0 15px;
}

    /* 设定每个菜单项的样式 */
    .nav-menu > li {
        position: relative;
        display: inline-block;
    }

        .nav-menu > li > a {
            display: inline-block;
            padding-bottom: 2px;
            margin-right: 30px;
        }

        .nav-menu > li:last-child > a {
            margin-right: 0;
        }

    /* 隐藏二级菜单 */
    .nav-menu li ul {
        display: none;
        position: absolute; /* 使二级菜单在鼠标悬停时显示在项下方 */
        list-style-type: none;
        padding: 0;
    }

        /* 设定二级菜单项的样式 */
        .nav-menu li ul li {
            display: block;
            white-space: nowrap;
        }
    /* 初始时隐藏二级菜单，并设置透明度为0 */
    .nav-menu li ul {
        position: absolute;
        top: -10000px;
        display: block;
        opacity: 0;
        background: #fff;
        left: auto;
        border-radius: 0 4px 4px;
        border: 0;
        border: 1px solid #eee;
        border-radius: 5px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
        margin: -3px 0 0 0;
        min-width: 120px;
        padding: 10px;
        text-align: left;
        /* 添加过渡效果 */
        transition: transform 0.2s ease-out;
        transform: translate3d(0, -5px, 0);
    }

    /* 当鼠标悬停在主菜单项上时，显示二级菜单并改变透明度 */
    .nav-menu li:hover ul {
        top: auto;
        display: block;
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .nav-menu .sub-menu a {
        display: block;
        padding: 5px 10px;
        border-radius: 3px;
    }

        .nav-menu .sub-menu a:hover {
            background: #efefef;
        }

.logo-wrapper {
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
}

.top-menu {
    display: inline-block;
    color: #fff;
    text-decoration: none;
}

.login-signup-wrapper {
    font-size: 14px;
}

.registration {
    display: inline-block;
    color: #fff;
    text-decoration: none;
}

.login-signup-wrapper .login {
    color: #333;
    font-size: 16px;
    margin-right: 15px;
}

    .login-signup-wrapper .login svg {
        vertical-align: middle;
        width: 14px;
    }

.btn-solid {
    display: inline-block;
    padding: 8px 16px;
    background: #A02337;
    border: 1px solid #A02337;
    color: #fff;
    border-radius: 6px;
    line-height: 1.6;
    min-width: 160px;
    text-align: center;
}

.btn-outline {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #A02337;
    color: #A02337;
    border-radius: 6px;
    line-height: 1.6;
    min-width: 160px;
    text-align: center;
}

.login-signup-wrapper .signup {
    display: inline-block;
    padding: 8px 14px;
    background: #A02337;
    color: #fff;
    border-radius: 6px;
}
/* multi language */
.multi-language-bar {
    display: inline-block;
    text-align: right;
    padding: 5px 6px;
    margin-left: 5px;
    position: relative;
    border-radius: 6px;
    cursor: pointer;
}

    .multi-language-bar:hover {
        background: #eee;
    }

    .multi-language-bar a {
        color: #999;
        display: block;
        padding: 5px 15px;
        white-space: nowrap;
        border-radius: 5px;
    }

        .multi-language-bar a:hover {
            color: #333;
            background: #eee;
        }

.language-checkbox {
    display: none;
}

.language-dorpdown-btn {
    cursor: pointer;
}

.language-list {
    display: none;
    transition: opacity 0.3s;
    opacity: 0;
    position: absolute;
    top: 20px;
    right: 0;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #ddd;
    box-shadow: 0 0 5px 0 #cfcfcf;
    list-style: none;
    padding: 5px;
    z-index: 2;
}

.language-checkbox:checked ~ .language-list {
    display: block;
    opacity: 1;
}

.language-dorpdown-mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.language-checkbox:checked ~ .language-dorpdown-mask {
    display: block;
}

.flex-container {
    display: flex;
}
/* main */
.blur-background {
    position: absolute;
    /*background: url(../img/pp-hp-bg.jpg) no-repeat center center;*/
    background-size: cover;
    overflow: hidden;
    top: 0;
    height: 738px;
    width: 100%;
    mix-blend-mode: multiply;
    -webkit-filter: blur(2px);
    filter: blur(2px);
    opacity: 0.05;
    z-index: -1;
}

.section-title-warpper {
    background: #f1f1f1;
    border-top: 1px solid #ddd;
}

.section-title {
    max-width: 1200px;
    margin: auto;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-section {
    margin: auto;
}

    .info-section .row-content {
        max-width: 1200px;
        margin: auto;
        width: 100%;
        padding: 25px 30px 50px;
        display: flex;
        align-items: center;
    }

    .info-section .row1 .row-content {
        height: auto;
    }

    .info-section .row2 .bg {
        background: url(../img/row2bg.jpg) no-repeat;
        background-size: 100% 100%;
        margin-left: 5%;
        height: 520px;
        width: 20%;
    }

    .info-section .row1 .image-container {
        width: 45%; /* 让容器宽度自适应 */
        padding-top: calc(32% * (1024/1536));
        position: relative; /* 设置相对定位，使内部元素绝对定位时相对于容器 */
        margin-left: 3%;
    }

    .info-section .row2 .image-container {
        width: 45%; /* 让容器宽度自适应 */
        padding-top: calc(22% * (500/264));
        position: relative; /* 设置相对定位，使内部元素绝对定位时相对于容器 */
        margin-right: 5%;
    }

    .info-section .row3 .image-container-wrapper {
        width: 100%;
        margin-top: -170px;
    }

    .info-section .row3 .image-container {
        width: 50%; /* 让容器宽度自适应 */
        padding-top: calc(28% * (1920/1562));
        position: relative; /* 设置相对定位，使内部元素绝对定位时相对于容器 */
        margin: auto;
    }

    .info-section .row6 .image-container {
        width: 40%; /* 让容器宽度自适应 */
        padding-top: calc(14% * (1920/1562));
        position: relative; /* 设置相对定位，使内部元素绝对定位时相对于容器 */
        margin: auto;
        margin-left: 5%;
    }

    .info-section .image-container img {
        position: absolute; /* 绝对定位以适应容器 */
        /*padding: 10px;*/
        object-fit: cover; /* 保持图片的宽高比并覆盖整个容器 */
    }

    .info-section .text {
        text-shadow: 0 0 0px #cdcdcd;
        flex: 1;
    }

        .info-section .text .text-center {
            text-align: center;
            padding: 0 10%;
        }

        .info-section .text h3 {
            font-size: 30px;
            font-weight: 600;
            margin: 0;
            margin-bottom: 15px;
        }

        .info-section .text h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            margin-top: 0;
        }

        .info-section .text p {
            line-height: 1.8;
            font-size: 16px;
            margin: 0;
        }

        .info-section .text div {
            font-size: 16px;
            line-height: 1.8;
        }

        .info-section .text .text-with-img {
            display: flex;
            margin-bottom: 60px;
        }

            .info-section .text .text-with-img .text-content {
                flex: 1;
            }

    .info-section .feature-block {
        display: inline-block;
        vertical-align: top;
        border-radius: 10px;
        /*border: 1px solid #ddd;*/
        width: 30%;
        margin-right: 4.5%;
        margin-bottom: 20px;
        background: #fff;
        /*box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);*/
    }

        .info-section .feature-block h4 {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .info-section .feature-block .feature-icon {
            background: #eee;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            padding: 10px;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

    .info-section .text .feature-block:nth-child(3n) {
        margin-right: 0;
    }

    .info-section .row1 .btn-outline {
        margin-left: 10px;
    }

.disclaimer {
    max-width: 1200px;
    margin: auto;
    width: 100%;
    border: 1.5px dashed #ccc;
    border-radius: 5px;
    padding: 10px 15px;
    background: #ebebeb;
    font-size: 14px;
}

    .disclaimer .disclaimer-title {
        font-weight: bold;
        margin: 0;
        margin-bottom: 5px;
    }

    .disclaimer .disclaimer-content {
        margin: 0;
    }

/* mobile */
.drawer-box {
    position: fixed;
    top: 29px;
    left: 10px;
    z-index: 1;
}

.drawer-open-btn {
    cursor: pointer;
}

    .drawer-open-btn svg {
        vertical-align: bottom;
    }

.drawer-checkbox {
    display: none;
}

.drawer-content {
    position: fixed;
    width: 300px;
    height: 100%;
    background: #f5f5f5;
    top: 0;
    left: -300px;
    transition: left 0.3s;
    z-index: 2;
}

.drawer-mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 1;
}

.drawer-checkbox:checked ~ .drawer-content {
    left: 0;
}

.drawer-checkbox:checked ~ .drawer-mask {
    display: block;
}

.drawer-menu, .drawer-sub-menu {
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    display: block;
    color: #333;
}

.drawer-sub-menu {
    padding-left: 30px;
}

    .drawer-menu span, .drawer-sub-menu span {
        display: inline-block;
        width: calc(100% - 20px);
        vertical-align: middle;
    }

    .drawer-menu svg, .drawer-sub-menu svg {
        width: 8px;
        height: 14px;
        vertical-align: middle;
    }


@media screen and (max-width:1100px) {
    .info-section .row1 .image-container {
        width: 40%;
        padding-top: calc(40% * (1024/1536));
    }

    .info-section .row2 .image-container {
        width: 22%;
        padding-top: calc(22% * (500/264));
    }
}


@media screen and (max-width:1000px) {
    .multi-language-bar {
        margin-right: -35px;
    }

    .language-dorpdown-btn > span {
        display: none;
    }

    .info-section .row1 .image-container {
        width: 42%;
        padding-top: calc(42% * (1024/1536));
    }

    .info-section .row2 .image-container {
        width: 24%;
        padding-top: calc(24% * (500/264));
    }
}

@media screen and (max-width:900px) {
    nav {
        display: none;
    }

    .nav-bar .logo-img {
        width: 120px;
    }

    .login-signup-wrapper {
        font-size: 12px;
    }

        .login-signup-wrapper .login svg {
            width: 12px;
        }

    .language-dorpdown-btn > span {
        display: none;
    }

    .info-section .row1, .info-section .row2, .info-section .row3 {
        display: block;
    }

    .info-section .bg {
        width: 100%;
        margin-right: 0;
    }

    .info-section .row1 .image-container {
        width: 60%;
        padding-top: calc(60% * (1024/1536));
        margin: auto;
    }

    .info-section .row2 .image-container {
        width: 60%;
        padding-top: calc(60% * (500/264));
        margin: auto;
    }

    .info-section .row1 .bg, .info-section .row3 .bg {
        margin-right: 0;
    }

    .info-section .row1 .image-container, .info-section .row2 .image-container {
        display: none;
    }

        .info-section .row1 .image-container.mobile, .info-section .row2 .image-container.mobile {
            display: block;
        }

    .info-section .text {
        width: 100%;
        margin-top: 15px;
    }
}

@media screen and (max-width:600px) {
    .info-section .row1 .image-container {
        width: 80%;
        padding-top: calc(80% * (1024/1536));
        margin: auto;
    }
}

@media screen and (min-width:900px) {
    .drawer-box {
        display: none;
    }

    .info-section .row1 .image-container.mobile, .info-section .row2 .image-container.mobile {
        display: none;
    }
}


/* FAQ */
.banner-wrapper {
    text-align: left;
    margin: auto;
    background: #f5f5f7;
    padding: 20px;
}

    .banner-wrapper .banner {
        max-width: 1200px;
        margin: auto;
        padding: 0 40px;
    }

        .banner-wrapper .banner .banner-title {
            font-size: 32px;
            margin: 0;
            color: #333;
        }

        .banner-wrapper .banner .banner-sub-title {
            font-size: 14px;
            margin: 0;
            color: #333;
        }

.content {
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
}

.question-box {
    margin-bottom: 15px;
}

    .question-box .question {
        border-radius: 5px;
        padding: 10px;
        background: #fff;
        box-shadow: 0 0 5px #ebebeb;
        border-left: 3px solid #A02337;
        font-weight: bold;
    }

    .question-box .answer {
        padding: 0 12px;
    }

.check-icon {
    color: #a02337;
    margin-right: 10px;
}
/* Home */
.home-page .top-wrapper {
    background: linear-gradient(to bottom, #000916bd, #021229de);
    /*background: url(/img/homepage_top_banner_bg_1.png);*/
    color: #fff;
    position: relative;
}

    .home-page .top-wrapper:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(/img/homepage_top_banner_bg_1.png) no-repeat center center;
        background-size: cover;
        opacity: 0.5; /* 透明度 50% */
        z-index: -1;
    }

.home-page .top-banner, .home-page .top-feature {
    max-width: 1200px;
    margin: auto;
    padding: 0 25px;
}

.home-page .top-banner {
    display: flex;
    width: 100%;
    padding-top: 30px;
}

    .home-page .top-banner .left-content {
        width: 70%;
        padding-top: 25px;
    }

    .home-page .top-banner .main-text {
        font-size: 40px;
        margin-bottom: 25px;
        font-weight: 600;
    }

    .home-page .top-banner .sub-text {
        margin-bottom: 30px;
        font-size: 18px;
    }

        .home-page .top-banner .sub-text .bold {
            font-size: 30px;
            font-weight: 500;
        }

    .home-page .top-banner .btn-outline {
        color: #fff;
        margin-left: 10px;
        border: 1.5px solid #fff;
    }

    .home-page .top-banner .right-img {
        width: 30%;
    }

        .home-page .top-banner .right-img img {
            max-width: 100%;
        }

.home-page .top-feature {
    display: flex;
    justify-content: space-between;
    height: 300px;
    margin-top: 60px;
}

    .home-page .top-feature .top-feature-block {
        width: 22%;
        border-radius: 7%;
        background: #20314bb3;
        /*box-shadow: 0 0px 45px rgba(0, 0, 0, 1);*/
        padding: 25px;
        text-align: center;
    }

        .home-page .top-feature .top-feature-block h4 {
            font-size: 18px;
            height: 40px;
            font-weight: 600;
        }

            .home-page .top-feature .top-feature-block h4 + div {
                font-size: 14px;
                line-height: 1.8;
            }

    .home-page .top-feature .feature-icon {
        width: 48px;
        margin: auto;
    }

.home-page .home-feature .feature-block h4 {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 0;
}

.home-page .row3 .home-feature {
    margin-top: 30px;
}

    .home-page .row3 .home-feature .feature-block {
        text-align: left;
        display: inline-flex;
    }

        .home-page .row3 .home-feature .feature-block .feature-content {
            flex: 1;
            margin-left: 15px;
            font-size: 14px;
        }

            .home-page .row3 .home-feature .feature-block .feature-content div {
                font-size: 14px;
            }

        .home-page .row3 .home-feature .feature-block .feature-icon {
            background: #fff;
            border: 2px solid #a02337;
        }

.home-page .top-wrapper .learn-more-link {
    text-align: center;
    color: #fff;
    padding: 40px;
}

    .home-page .top-wrapper .learn-more-link a {
        color: #fff;
    }

.home-page .row-content .text .main-text {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
}

.home-page .info-section .row1 .flex-container {
    align-items: center;
    margin-top: 20px;
    padding: 0 50px;
}

.home-page .info-section .row1 .image-container {
    width: 30%; /* 让容器宽度自适应 */
    padding-top: calc(17% * (1400/1050));
    position: relative; /* 设置相对定位，使内部元素绝对定位时相对于容器 */
    margin: auto;
    margin-left: 15%;
}

    .home-page .info-section .row1 .image-container .img_1 {
        width: 100%;
        position: absolute;
        top: 0;
        right: 0;
        max-width: 100%;
        z-index: 2;
        box-shadow: 0 0 10px #e2e2e2;
        border-radius: 8px;
    }

.home-page .info-section .row1 .flex-container .text {
    flex: 1;
}


.home-page .info-section .row2 .flex-container {
    align-items: center;
    margin-top: 20px;
}

.home-page .info-section .row2 .image-container {
    width: 41%; /* 让容器宽度自适应 */
    padding-top: calc(18% * (981/666));
    position: relative; /* 设置相对定位，使内部元素绝对定位时相对于容器 */
    margin: auto;
    margin-right: 6%;
}

    .home-page .info-section .row2 .image-container .img_1 {
        width: 100%;
        position: absolute;
        top: 0;
        right: 0;
        max-width: 100%;
        z-index: 2;
        box-shadow: 0 0 10px #e2e2e2;
        border-radius: 8px;
    }

.home-page .info-section .row1 .flex-container .text {
    flex: 1;
}

.home-page .info-section .row4 .image-container {
    width: 20%; /* 让容器宽度自适应 */
    padding-top: calc(50% * (239/506));
    position: relative; /* 设置相对定位，使内部元素绝对定位时相对于容器 */
    margin: auto;
    margin-right: 3%;
}

    .home-page .info-section .row4 .image-container .img_1 {
        width: 70%;
        position: absolute;
        top: 0;
        left: 15%;
        max-width: 100%;
    }

.home-page .info-section .row4 .download-btn-wrapper {
    margin-top: 40px;
}

.home-page .row5 .free-trail-text {
    font-size: 28px;
    margin-bottom: 15px;
}

.home-page .row5 h3 {
    font-size: 32px;
    font-weight: bold;
}

.home-page .row5 .price-text {
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.home-page .info-section .row5 .image-container {
    width: 48%;
    padding-top: calc(23% * (1504 / 1024));
    position: relative; /* 设置相对定位，使内部元素绝对定位时相对于容器 */
    margin: auto;
    margin-left: 3%;
}

    .home-page .info-section .row5 .image-container .img_1 {
        width: 100%;
        position: absolute;
        bottom: 0;
        right: 0;
        max-width: 100%;
    }

.home-page .faq-row-wrapper {
    background: #f8f8f8;
    border-top: 1px solid #ddd;
}

    .home-page .faq-row-wrapper h4 {
        font-weight: bold;
    }

/* features */
.feature-page .info-section em {
    color: #999;
    font-weight: 300;
}

.feature-page .info-section .row1 .image-container .img_1 {
    width: 60%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 6px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, .15);
    max-width: 100%;
}

.feature-page .info-section .row1 .image-container .img_2 {
    box-shadow: 0 30px 40px rgba(0, 0, 0, .1);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 75%;
    z-index: 1;
    border-radius: 6px;
    max-width: 100%;
}

.feature-page .info-section .row2 .image-container .img_1 {
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    z-index: 1;
}

.feature-page .info-section .row3 .image-container .img_1 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
}

.feature-page .info-section .row3 .image-container .img_2 {
    box-shadow: 0 30px 40px rgba(0, 0, 0, .1);
    position: absolute;
    top: 8.5%;
    left: 13.7%;
    width: 72.5%;
    z-index: 1;
    border-radius: 0;
    max-width: 100%;
}

.feature-page .info-section .row6 .image-container .img_1 {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 90%;
    position: absolute;
    top: 0;
    right: 0;
    max-width: 100%;
    z-index: 2;
}

.feature-page .info-section .row3 {
    background: #f8f8f8;
}

.feature-page .info-section .row4 {
    background: #f1f1f1;
    border-top: 1px solid #ddd;
}

.feature-page .info-section .row3 .row-content {
    flex-wrap: wrap;
    margin-top: 170px;
}

.feature-page .row3 .feature-block-wrapper {
    margin-top: 35px;
    margin-bottom: 20px;
}

    .feature-page .row3 .feature-block-wrapper .feature-block {
        background: none;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-bottom: 25px;
    }

        .feature-page .row3 .feature-block-wrapper .feature-block h4 {
            margin: 0;
            margin-bottom: 5px;
            padding-left: 10px;
            font-size: 14px;
            border-left: 3px solid #a02337;
        }

            .feature-page .row3 .feature-block-wrapper .feature-block h4 + div {
                padding-left: 10px;
                font-size: 14px;
            }

.feature-page .row5 .flex-container .image-container {
    width: 30%; /* 让容器宽度自适应 */
    padding-top: calc(31% * (1024/1024));
    position: relative; /* 设置相对定位，使内部元素绝对定位时相对于容器 */
    margin: auto;
    margin-right: 5%;
}

    .feature-page .row5 .flex-container .image-container .img_1 {
        width: 90%;
        position: absolute;
        top: 10px;
        left: 0;
        max-width: 100%;
    }

.feature-page .row6 .feature-block-wrapper {
    background: #f2f2f2;
    border-left: 5px solid #a02337;
    margin-bottom: 20px;
    padding: 25px 35px 0;
}

    .feature-page .row6 .feature-block-wrapper .feature-block {
        background: none;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-bottom: 25px;
    }

        .feature-page .row6 .feature-block-wrapper .feature-block h4 {
            margin: 0;
            margin-bottom: 5px;
            font-size: 14px;
        }

            .feature-page .row6 .feature-block-wrapper .feature-block h4 + div {
                font-size: 14px;
            }
/* features */
/* Use cases */
.education-content-wrapper .gray-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
}

.education-content-wrapper .content {
    padding: 0;
    margin-bottom: 15px;
    line-height: 1.8;
}

.education-content-wrapper img {
    max-width: 100%;
}

/* education */
.education-page .page-content {
    max-width: 1200px;
    margin: auto;
    padding: 25px 30px;
}

    .education-page .page-content .welcome-message {
        font-size: 24px;
        font-weight: 500;
        color: #999;
        margin-top: 0;
    }

    .education-page .page-content .main-title {
        font-size: 24px;
        font-weight: 600;
        color: #333;
    }

    .education-page .page-content .education-content-wrapper {
        display: flex;
    }

        .education-page .page-content .education-content-wrapper .education-content-left {
            flex: 1;
        }

            .education-page .page-content .education-content-wrapper .education-content-left > div {
                display: flex;
                margin-bottom: 20px;
            }

            .education-page .page-content .education-content-wrapper .education-content-left .thumbnail-img {
                margin-right: 20px;
                width: 280px;
            }

                .education-page .page-content .education-content-wrapper .education-content-left .thumbnail-img img {
                    width: 100%;
                }

            .education-page .page-content .education-content-wrapper .education-content-left .education-content {
                flex: 1;
            }

            .education-page .page-content .education-content-wrapper .education-content-left .content-title {
                font-weight: 600;
                margin-bottom: 10px;
            }

            .education-page .page-content .education-content-wrapper .education-content-left .content-text {
                color: #999;
                margin-bottom: 10px;
            }

        .education-page .page-content .education-content-wrapper .education-content-right {
            width: 260px;
            margin-left: 15px;
        }

            .education-page .page-content .education-content-wrapper .education-content-right img {
                width: 100%;
            }

            .education-page .page-content .education-content-wrapper .education-content-right .banner {
                border: 1px solid #d9d9d9;
                padding: 20px;
                margin-bottom: 20px;
            }
