/* @import url('banner.css'); */

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}


.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.flex-3 {
    flex: 3;
}

.gap-1 {
    gap: 4px;
}

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 12px;
}

.gap-4 {
    gap: 16px;
}

.gap-5 {
    gap: 20px;
}

.gap-6 {
    gap: 24px;
}


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

.cursor-pointer {
    cursor: pointer;
}

.w-fit {
    width: fit-content;
}

.h-fit {
    height: fit-content;
}

.h-full {
    height: 100%;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.lg-block {
    @media (min-width: 1024px) {
        display: block;

    }
}


.text-decoration-underline {
    text-decoration: underline;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

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

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

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.bg-white {
    background-color: #fff;
}

.w-full {
    width: 100%;
}

.overflow-auto {
    overflow: auto;
}


.btn-primary,
.btn-orange {
    display: flex;
    align-items: center;
    padding: 12px 40px;
    font-weight: 800;
    font-family: Urbanist, Urbanist;
    font-size: 22px;
    color: #ffffff;
    line-height: 33px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #0c53fe;
}

.btn-orange {
    background-color: #ff6c00;
}



/* banner */
.banner {
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    padding: 80px 24px 0 24px;
}

.banner .banner-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    overflow: visible;
    position: relative;
}

.banner .banner-container .banner-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 55%;
    height: 700px;
}

.banner .banner-container .banner-left p {
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 18px;
    color: #56555c;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 20px;
}

.banner .banner-container .banner-left p::before {
    position: absolute;
    left: 0;
    top: 10px;
    content: '';
    width: 6px;
    height: 6px;
    background: #0c53fe;
    border-radius: 50%;
}

.banner .banner-container .banner-left .home-title {
    text-align: left;
    margin-bottom: 40px;
}

.banner .banner-container .banner-left .banner-description {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.banner .banner-container .banner-left .button-wrap {
    display: flex;
    gap: 32px;
    margin-top: 60px;
}

.banner .banner-container .banner-left .button-wrap img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.banner .banner-container .banner-left .button-wrap .btn-orange {
    position: relative;
}

.banner .banner-container .banner-left .button-wrap .btn-orange .discount {
    height: fit-content;
    width: fit-content;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}

.banner .banner-container .banner-left .button-wrap .btn-orange .discount img {
    height: auto;
    width: 40px;
    margin: 0;
}

.banner .banner-container .banner-left .button-wrap .btn-orange .discount .discount-text {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 12px;
    line-height: 1;
    color: #FFFFFF;
    text-align: center;
}

.banner .banner-container .banner-left .tips {
    margin-top: 20px;
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 16px;
    color: #34c759;
    text-align: left;
    margin: 20px 0;
}

.banner .banner-container .banner-right {
    width: 55%;
    display: block;
    height: auto;
    position: absolute;
    top: 40%;
    right: -8%;
    transform: translate(0, -50%);
    z-index: 1;
}

/* 宽度小于 1024 */
@media (max-width: 1536px) {
.banner .banner-container .banner-right {
    width: 45%;
    display: block;
    height: auto;
    position: absolute;
    top: 40%;
    right: 0%;
    transform: translate(0, -50%);
    z-index: 1;
}
}


/* 宽度小于 1024 */
@media (max-width: 1024px) {
    .banner {
        padding: 20px 16px 0 16px;
    }

    .banner .banner-container {
        flex-direction: column;
        align-items: center;
    }

    .banner .banner-container .banner-right {
        width: 100%;
        position: relative;
        transform: none;
        height: auto;
        top: auto;
        right: auto;
    }

    .banner .banner-container .banner-left {
        width: 100%;
        height: fit-content;
        text-align: left;
    }

    .banner .banner-container .banner-left .button-wrap {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 32px;
    }

    .banner .banner-container .banner-left .button-wrap .discount {
        top: 10px !important;
    }

    .banner .banner-container .banner-left .button-wrap .btn {
        width: 67%;
        justify-content: center;
        font-size: 18px;
        line-height: 28px;
    }

    .banner .banner-container .banner-left .tips {
        text-align: center;
        font-size: 14px;
        line-height: 20px;
    }

    .banner .banner-container .banner-left p {
        font-size: 14px;
        line-height: 20px;
        padding-left: 12px;
    }

    .banner .banner-container .banner-left p::before {
        width: 4px;
        height: 4px;
        left: 0;
        top: 8px;
    }

    .banner .banner-container .banner-left .home-title {
        text-align: center;
        margin-bottom: 20px;
    }

    .banner .banner-container .banner-left .banner-description {
        gap: 12px;
    }
}





/* 统计 */
/* 整体背景和居中 */
.statistic-wrap {
    background-color: #F4F7FE;
    display: flex;
    justify-content: center;
}

/* 内容容器 */
.statistic-content {
    max-width: 1200px;
    width: 100%;
    margin: 45px 24px;
    background-color: white;
    padding: 42px 0;
    border-radius: 20px;
}

/* 统计数据横向排列 */
.statistic-row {
    display: flex;
    margin: 0;
    flex-wrap: nowrap;
}

/* 每项统计样式 */
.statistic-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
}

.statistic-item>.statistic-title {
    display: none;
}

/* 分割线，仅前三项 */
.statistic-border {
    border-right: 1px solid #E6E6E6;
}

/* 图标和标题排成一行 */
.statistic-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/* 标题样式 */
.statistic-title {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #56555C;
    margin-left: 8px;
    text-align: center;
}

/* 数字样式 */
.statistic-number {
    font-weight: 900;
    font-size: 42px;
    color: #0C0C0D;
    line-height: 70px;
}

/* 描述信息 */
.statistic-desc {
    font-family: Arial, sans-serif;
    font-weight: 400;
    line-height: 18px;
    font-size: 16px;
    color: #9E9D9F;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

/* 绿色数字 */
.statistic-desc .green {
    color: #34C759;
}

/* 描述图标样式 */
.statistic-desc img {
    width: auto;
    height: 14px;
    margin-left: 5px;
    margin-right: 5px;
}

/*   小于 1024  */
@media (max-width: 1024px) {
    .statistic-content {
        margin: 16px 20px;
        border-radius: 12px;
        padding: 20px 0;
    }

    .statistic-row {
        align-items: center;
    }

    .statistic-item {
        flex: 1;
        width: 100%;
        /* 去掉右侧和底部分割线 */
        border: none !important;
    }

    .statistic-item>.statistic-title {
        display: block;
    }

    .statistic-item img {
        width: auto;
        height: 14px;
    }

    .statistic-header {
        flex-direction: column;
        align-items: start;
    }

    .statistic-header .statistic-title {
        display: none;
    }

    .statistic-number {
        font-size: 24px;
        line-height: 34px;
    }

    .statistic-title {
        margin: 0;
        margin-top: 4px;
        font-size: 11px;
        line-height: 16px;

    }

    .statistic-desc {
        margin-top: 20px;
        font-size: 10px;
        line-height: 16px;
    }

    .statistic-desc img {
        width: auto;
        height: 8px;
    }
}


/* 下载部分 */
/* 外部容器 */
.download-section {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

/* 主容器 */
.download-wrap {
    max-width: 1200px;
    margin: 100px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 描述 */
.download-desc {
    margin-top: 12px;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #56555C;
    line-height: 30px;
    text-align: center;
    width: 100%;
    max-width: 950px;
    margin-bottom: 80px;
}

/* 行容器 */
.download-row {
    display: flex;
    gap: 32px;
    width: 100%;
    margin-bottom: 60px;
    align-items: center;
}

.download-row.reverse {
    flex-direction: row-reverse;
    margin-bottom: 0;
}

/* 图片区域 */
.download-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-image img {
    width: 100%;
    height: auto;
}

/* 文本内容区域 */
.download-article {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 标题 */
.download-article-title {
    font-weight: 800;
    font-size: 32px;
    color: #1E1E1E;
    line-height: 38px;
    margin-bottom: 40px;
}

/* 描述文字块 */
.download-text-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 描述文字 */
.download-article-desc {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #56555C;
    line-height: 26px;
}

/* 按钮 */
.download-article-btn {
    margin-top: 60px;
    width: fit-content;
    font-weight: 800;
    font-size: 22px;
    color: #FFFFFF;
    background-color: #0C53FE;
    border: none;
    line-height: 33px;
    padding: 12px 50px;
    cursor: pointer;
    border-radius: 16px;
}

/* 响应式：移动端适配 */
@media (max-width: 1024px) {

    .download-wrap {
        margin: 60px 16px 0 16px;
    }

    .download-desc {
        font-size: 14px;
        line-height: 20px;
        margin-top: 16px;
        margin-bottom: 20px;
    }

    .download-row,
    .download-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        margin-bottom: 60px;
    }


    .download-article-title {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 4px;
    }

    .download-article-desc {
        font-size: 14px;
        line-height: 20px;
        text-align: left;
    }


    .download-article-btn {
        font-size: 18px;
        line-height: 28px;
        padding: 10px 36px;
        margin: 40px auto 0;
    }
}



/*  优势部分 */
/* 外部容器（替代 bg-blue-gray 和居中） */
.advantage-section {
    display: flex;
    justify-content: center;
    padding: 120px 24px;
}

/* 主容器 */
.advantage-wrap {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 列表网格 */
.advantage-list {
    margin-top: 72px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 120px;
    row-gap: 52px;
    width: 100%;
}

/* 单个项容器 */
.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* 图标 */
.advantage-item img {
    width: 100px;
    height: 100px;
    margin-left: -12px;
}

/* 标题 */
.advantage-item-title {
    margin-top: 32px;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 26px;
    color: #1E1E1E;
    line-height: 36px;
}

/* 描述 */
.advantage-item-desc {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #56555C;
    line-height: 26px;
}

/* 响应式适配 */
@media (max-width: 1024px) {
    .advantage-section {
        padding: 60px 16px;
    }


    .advantage-list {
        margin-top: 20px;
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 20px;
    }

    .advantage-item {
        align-items: start;
        text-align: start;
    }


    .advantage-item img {
        width: 80px;
        height: 80px;
        margin-left: -10px;

    }

    .advantage-item-title {
        font-size: 18px;
        line-height: 26px;
        text-align: start;
        margin: 4px 0;
    }

    .advantage-item-desc {
        font-size: 14px;
        line-height: 20px;
        text-align: start;
    }


}



/*  swiper 部分 */

.swiper-slide {
  height: auto !important; /* 允许内容撑开高度 */
}

.swiper-title {
    font-weight: bold;
    font-size: 26px;
    color: #1E1E1E;
    line-height: 39px;
    text-align: center;
    margin-top: 160px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-title .green {
    color: #34C759;
}

.swiper-title img {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    margin-right: 8px;
}


.btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.try-now-btn {
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 33px;
    text-align: center;
    margin: 0 auto;
    padding: 12px 100px;
}

@media (max-width: 1024px) {
    .swiper-title {
        font-size: 14px;
        line-height: 21px;
        margin-top: 60px;
        margin-bottom: 16px;
    }

    .swiper-title img {
        width: 14px;
        height: 14px;
    }

    .btn-wrap {
        margin: 40px auto;
    }

    .try-now-btn {
        font-size: 18px;
        line-height: 28px;
        padding: 10px 60px;
    }

}



/* difference */
.difference-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 130px;
}

.difference-wrap .home-title {
    margin-bottom: 30px;
}


.difference-wrap table {
    border-collapse: separate;
    border-spacing: 0;
}



.difference-wrap table thead th {
    background: #F7F8FA;
    padding: 15px 36px;
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 24px;
    color: #333333;
    line-height: 29px;
    text-align: center;

}


.difference-wrap table thead th:first-child {
    /* 左上角圆角 */
    border-top-left-radius: 24px;
    text-align: left;
}

.difference-wrap table thead th:last-child {
    /* 右上角圆角 */
    border-top-right-radius: 24px;
}


.difference-wrap table tbody td {
    padding: 20px 36px;
    border-bottom: 1px solid #F0F0F0;
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    line-height: 22px;
    text-align: center;
}

.difference-wrap table tbody tr td:first-child {
    /* 下划线 */
    text-underline-offset: 4px;
    text-decoration: underline dashed #77737F;
    text-align: left;
}

.difference-wrap .operation .btn {
    font-family: Urbanist, Urbanist;
    font-weight: bold;
    height: 52px;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.difference-wrap .operation td {
    border-bottom: none;
}

.difference-wrap .operation .btn-orange img {
    height: 42px;
    width: auto;
    margin-right: 4px;
}

.difference-wrap .h5-operation {
    display: none;
}

/* 移动端隐藏第一列 */
@media (max-width: 1024px) {

    .difference-wrap {
        padding-top: 40px;
        padding-bottom: 0;
    }

    .difference-wrap .home-title {
        margin-bottom: 20px;
    }


    .difference-wrap table thead th:first-child {
        /* 左上角圆角 */
        border-top-left-radius: 16px;
    }

    .difference-wrap table thead th:last-child {
        /* 右上角圆角 */
        border-top-right-radius: 16px;
    }



    /* 优化表格布局与字体大小 */
    .difference-wrap table thead th,
    .difference-wrap table tbody td {
        padding: 16px;
        font-size: 14px;
        line-height: 17px;
    }

    .difference-wrap table tbody td {
        font-size: 12px;
        line-height: 15px;
    }

    .difference-wrap table tbody td img {
        width: 14px;
        height: 14px;
    }

    .difference-wrap .operation {
        display: none;
    }

    .difference-wrap .h5-operation {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 60px;
    }

    .difference-wrap .h5-operation .btn {
        height: 52px;
        width: 270px;
        font-size: 18px;
        line-height: 27px;
        display: flex;
        justify-content: center;
    }

    .difference-wrap .h5-operation img {
        height: 42px;
        width: auto;
    }

}


/* 下载视频步骤 */

.step-wrap {
    margin: 120px 24px;
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.step-wrap .step-sub {
    display: flex;
    justify-content: center;
    gap: 36px;
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 22px;
    color: #56555C;
    line-height: 30px;
    margin-top: 36px;
    margin-bottom: 78px;
    flex-wrap: wrap;

}

.step-wrap .step-sub img {
    width: 20px;
    height: 20px;
}

.step-wrap .step-sub .gray {
    color: #9D9BA8;
}

.step-wrap .step-sub .step-sub-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-wrap .step-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 384px;
}

.step-wrap .step-item img {
    width: 100%;
    height: auto;
}


.step-wrap .step-image .leftArrow {
    width: 28px;
    height: 20px;
    margin-top: 90px;
}
.step-wrap .step-image {
    gap: 28px;
}

.step-wrap .step-content {
    gap: 82px;
}

.step-wrap .step-number {
    font-weight: bold;
    font-size: 22px;
    color: #1B5FF9;
    line-height: 30px;
    margin: 42px 0 20px 0;
}

.step-wrap .step-title {
    font-weight: 800;
    font-size: 26px;
    color: #1E1E1E;
    line-height: 36px;
    margin-bottom: 16px;
}


.step-wrap .step-item .step-desc {
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 14px;
    color: #56555C;
    line-height: 20px;
}


@media (max-width: 1024px) {

    .step-wrap .step-image {
        flex-direction: column;
        align-items: center;
    }

    .step-wrap .step-image .leftArrow {
        margin-top: 0;
    }

    /* 顺时针旋转 90 度 */
    .step-wrap .step-image>img {
        transform: rotate(90deg);
    }

    .step-wrap {
        margin: 60px 16px;
    }

    .step-wrap .step-sub {
        font-size: 14px;
        line-height: 18px;
        margin-top: 20px;
        margin-bottom: 20px;
        gap: 16px;
    }

    .step-wrap .step-item {
        max-width: 100%;
    }

    .step-wrap .step-item img {
        width: 100%;
        height: auto;
    }

    .step-wrap .step-number {
        font-size: 16px;
        line-height: 26px;
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .step-wrap .step-title {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 4px;
    }

    .step-wrap .step-desc {
        font-size: 14px;
        line-height: 20px;
    }

}

/* 蓝色下载操作 */

.blue-download {
    background-size: cover;
}

.blue-download-wrap {
    margin: 80px 24px 40px 24px;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blue-download-wrap .logo {
    width: auto;
    height: 90px;
    margin-bottom: 40px;
}

.blue-download-title {
    font-family: Urbanist, Urbanist;
    font-weight: 800;
    font-size: 52px;
    color: #FFFFFF;
    line-height: 60px;
    text-align: center;
    max-width: 970px;
}

.blue-download-sub {
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 30px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 48px;
}

.blue-download-btn-wrap {
    display: flex;
    gap: 40px;
}

.blue-download-wrap .btn {
    padding: 18px 40px;
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
}

.blue-download-wrap .btn:hover {
    opacity: 0.8;
}

.blue-download-wrap .free-download-btn,
.blue-download-wrap .free-download-btn:hover,
.blue-download-wrap .free-download-btn:active {
    color: #1B5FF9;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
}

.blue-download-wrap .unlock-btn,
.blue-download-wrap .unlock-btn:hover,
.blue-download-wrap .unlock-btn:active {
    border: 1px solid #FFFFFF;
    background: linear-gradient(180deg, #FE890C 0%, rgba(254, 137, 12, 0.9) 100%);
    color: white;


}

.blue-download-btn-wrap .btn-desc {
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 30px;
    text-align: center;
}

.blue-download-wrap .blue-download-list {
    margin-top: 36px;
    background: linear-gradient(90deg, rgba(7, 46, 128, 0) 0%, rgba(7, 46, 128, 0.12) 48%, rgba(7, 46, 128, 0) 100%);
    border-radius: 16px;
    color: #FFFFFF;
    padding-top: 20px;
    padding-bottom: 30px;
}

.blue-download-wrap .blue-download-list-item {
    width: 168px;
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 25px;
    text-align: center;
}

.blue-download-list-item img {
    height: 52px;
    width: auto;
}

/* 小于 1024 */
@media (max-width: 1024px) {

    .blue-download-wrap {
        margin: 60px 16px;
    }

    .blue-download-wrap .logo {
        width: auto;
        height: 70px;
        margin-bottom: 20px;
    }


    .blue-download-title {
        font-size: 26px;
        line-height: 31px;
        text-align: center;
    }

    .blue-download-sub {
        font-size: 14px;
        line-height: 20px;
        margin-top: 12px;
        margin-bottom: 24px;
    }

    .blue-download-btn-wrap {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .blue-download-wrap .btn {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        line-height: 24px;
    }

    .blue-download-wrap .btn-desc {
        font-size: 12px;
        line-height: 20px;
        margin-top: 12px;
    }

    .blue-download-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 16px;
        row-gap: 16px;

    }

    .blue-download-wrap .blue-download-list-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        line-height: 20px;
    }

    .blue-download-list-item img {
        height: 42px;
        width: auto;
    }

}


/* FAQ */
.faq-wrap {
    margin: 160px 24px;

}

.faq-wrap .home-title {
    margin-bottom: 80px;
}

.faq-wrap .faq-title {

    font-weight: bold;
    font-size: 40px;
    color: #0C0C0D;
    line-height: 50px;
}

.faq-right {
    width: 100%;
    max-width: 400px;
}

.faq-wrap .faqs-content-item {
    padding: 4px;
    border-radius: 24px;
    cursor: pointer;

}

.faq-wrap .faq-item {
    border-radius: 20px;
    padding: 30px 24px;
    background: #F5F8FF;
}

.faq-item .faq-item-title {
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 22px;
    color: #0C0C0D;
    line-height: 26px;
}

.faq-item .faq-item-number {
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    border-radius: 50%;
    background-color: #171717;
    margin-right: 16px;
    height: 24px;
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.faq-item .faq-item-desc {
    margin-top: 20px;
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 18px;
    color: #56555C;
    line-height: 26px;
}

.faq-item .faq-tip {
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 18px;
    color: #56555C;
    line-height: 26px;
    text-align: left;
    text-decoration-line: underline;
    cursor: pointer;

}

@media (max-width: 1024px) {

    .faq-wrap {
        margin: 60px 0;
    }

    .faq-content {

        flex-direction: column;
    }

    .faq-wrap .home-title {
        margin-bottom: 20px;
    }

    .faq-wrap .faq-item {
        border-radius: 16px;
        padding: 22px 16px;
    }

    .faq-wrap .faqs-content-item {
        padding: 4px;
        border-radius: 20px;

    }


    .faq-wrap .faq-title {
        font-size: 16px;
        line-height: 22px;
    }

    .faq-item .faq-item-title {
        font-size: 15px;
        line-height: 22px;
    }

    .faq-item .faq-item-number {
        flex-shrink: 0;
        height: 20px;
        width: 20px;
        font-size: 12px;
        line-height: 20px;
    }

    .faq-item .faq-item-desc,
    .faq-item .faq-tip {
        font-size: 14px;
        line-height: 20px;
    }

}