/* chart-area */
.chart-area h2+p {
    color: var(--text-light-color);
    margin-top: 25px;
}

.chart-container {
    margin-top: 90px;
    padding: 90px;
    background: var(--white-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.chart-wrapper {
    width: 345px;
    height: 345px;
}

.progress-container {
    width: 600px;
    margin: 0 80px;
}

.progress-item+.progress-item {
    margin-top: 45px;
}

.progress-track {
    flex: 1;
    /* 进度条占满剩余宽度 */
    height: 20px;
    background: #E3E4EA;
    /* 背景轨道色 */
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    /* 初始宽度为0，触发动画 */
    border-radius: 10px;
    background: var(--progress-color);
    /* CSS 变量接收JS颜色 */
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    /* 加载动画 */
}

.chart-number li {
    font-size: 22px;
}

.chart-number li+li {
    margin-top: 38px;
}

.chart-number li::before {
    content: "";
    width: 24px;
    height: 24px;
    background: var(--progress-color);
    border-radius: 50%;
}

.chart-number h3 {
    margin: 0 10px;
}

.chart-number p {
    color: var(--light-color);
    font-weight: 700;
}

/* chart-area 响应式适配 */
@media (max-width: 1480px) {
    .chart-container {
        margin: 70px 20px 0;
        padding: 70px 60px;
    }

    .progress-container {
        width: 500px;
        margin: 0 60px;
    }

    .chart-wrapper {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 1200px) {
    .chart-container {
        flex-direction: column;
        gap: 50px;
    }

    .progress-container {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 1024px) {
    .chart-container {
        margin: 60px 20px 0;
        padding: 60px 40px;
    }

    .chart-wrapper {
        width: 280px;
        height: 280px;
    }

    .progress-item+.progress-item {
        margin-top: 35px;
    }

    .chart-number li {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .chart-area h2+p {
        margin-top: 20px;
    }

    .chart-container {
        margin: 50px 20px 0;
        padding: 40px 24px;
    }

    .chart-wrapper {
        width: 240px;
        height: 240px;
    }

    .progress-track {
        height: 16px;
    }

    .progress-item+.progress-item {
        margin-top: 30px;
    }

    .chart-number li {
        font-size: 18px;
    }

    .chart-number li+li {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .chart-container {
        padding: 30px 20px;
    }

    .chart-wrapper {
        width: 200px;
        height: 200px;
    }
}

/* chart-area */

/* desc-area */
.desc-area h2 {
    font-size: 32px;
}

.desc-area h2+p {
    margin: 30px 0;
    color: var(--text-light-color);
}

.desc-box {
    --border-radius: 30px;

    gap: 80px;
}

.desc-box+.desc-box {
    margin-top: 80px;
}

.desc-box .swiper {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.desc-box .swiper-slide {
    height: auto;
}

.desc-box .swiper-pagination {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    font-size: 30px;
    font-weight: 700;
    color: var(--white-color);
    text-align: right;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 50%, transparent);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    pointer-events: none;
}

.desc-box .swiper-pagination-current {
    font-size: 63px;
    color: var(--yellow-color);
}

.desc-image {
    max-width: 720px;
}

.desc-box .swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.warehouse-box {
    --padding-right: 66px;
    --padding-bottom: 56px;
    z-index: 1;
}

.warehouse-box .swiper::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% - var(--padding-right));
    height: calc(100% - var(--padding-bottom));
    border: 2px solid var(--light-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

.warehouse-box .swiper-slide {
    padding: 0 var(--padding-right) var(--padding-bottom) 0;
}

.warehouse-box .swiper-pagination {
    bottom: var(--padding-bottom);
    width: calc(100% - var(--padding-right));
}

.desc-text {
    max-width: 800px;
}

.warehouse-item {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 32px;
    transition: all 0.3s;
}

.warehouse-item+.warehouse-item {
    margin-top: 40px;
}

.warehouse-item .desc-icon {
    flex-shrink: 0;
    width: 78px;
    height: 78px;
    margin-right: 40px;
    border-radius: 50%;
    box-shadow: 3px 0px 5px 0px rgba(0, 59, 177, 0.25);
    background: var(--white-color);
    color: var(--light-color);
    transition: all 0.3s;
}

.warehouse-item:hover {
    padding: 40px 45px;
    border-radius: 20px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.warehouse-item:hover::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 35%;
    border-radius: 4px;
    background: var(--light-color);
}

.warehouse-item:hover .desc-icon {
    box-shadow: none;
    background: var(--light-color);
    color: var(--white-color);
}


.fast-item {
    font-size: 32px;
}

.fast-item+.fast-item {
    margin-top: 50px;
}

.fast-item .desc-icon {
    flex-shrink: 0;
    margin-right: 20px;
}

.lightning-box .fast-item {
    color: var(--red-color);
}


@media (max-width: 1400px) {
    .desc-box {
        --border-radius: 20px;
        flex-direction: column;
        gap: 50px;
    }

    .desc-box:nth-of-type(2n) {
        flex-direction: column-reverse;
    }

    .desc-box+.desc-box {
        margin-top: 70px;
    }

    .desc-image,
    .desc-text {
        max-width: 50%;
    }

    .warehouse-item,
    .fast-item {
        font-size: 28px;
    }

    .warehouse-item .desc-icon {
        width: 70px;
        height: 70px;
        margin-right: 30px;
    }

    .warehouse-item+.warehouse-item {
        margin-top: 35px;
    }

    .fast-item+.fast-item {
        margin-top: 40px;
    }
}

@media (max-width: 1024px) {

    .desc-image,
    .desc-text {
        max-width: 100%;
    }

    .warehouse-item,
    .fast-item {
        font-size: 26px;
    }

    .warehouse-item .desc-icon {
        width: 64px;
        height: 64px;
        margin-right: 25px;
    }

    .warehouse-item:hover {
        padding: 30px 35px;
    }

    .desc-box .swiper-pagination {
        font-size: 18px;
    }

    .desc-box .swiper-pagination-current {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .desc-area h2 {
        font-size: 24px;
    }

    .desc-area h2+p {
        margin: 20px 0;
    }

    .desc-box {
        --border-radius: 16px;
        gap: 20px;
    }

    .desc-box+.desc-box {
        margin-top: 50px;
    }

    .warehouse-box {
        --padding-right: 30px;
        --padding-bottom: 24px;
    }

    .warehouse-item,
    .fast-item {
        font-size: 22px;
    }

    .warehouse-item .desc-icon {
        width: 56px;
        height: 56px;
        margin-right: 20px;
    }

    .warehouse-item .desc-icon svg {
        width: 20px;
        height: 20px;
    }

    .warehouse-item+.warehouse-item {
        margin-top: 25px;
    }

    .fast-item+.fast-item {
        margin-top: 10px;
    }

    .warehouse-item:hover {
        padding: 20px 25px;
    }

    .fast-item .desc-icon {
        margin-right: 10px;
    }

    .fast-item .desc-icon img,
    .fast-item .desc-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {

    .warehouse-item,
    .fast-item {
        font-size: 18px;
    }

    .warehouse-item .desc-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
}

/* desc-area */

/* reviews-area */
.reviews-area {
    background: #F7F3FF;

}

.reviews-area h2 span {
    display: block;
}

.title-tip {
    font-size: 19px;
    color: #994AFB;

}

.reviews-area .swiper {
    margin-top: 50px;
}

.reviews-content {
    padding: 40px;
    background: var(--white-color);
    border-radius: 20px;
}

.reviews-content p {
    min-height: 104px;
    margin: 40px 0 60px;
    color: var(--text-light-color);
}

.reviews-info img {
    margin: 0 20px 0 0;
}

.reviews-name {
    font-size: 20px;
}

.reviews-desc {
    margin-top: 3px;
    font-size: 14px;
    color: var(--text-light-color);
}

@media screen and (max-width: 1024px) {

    .reviews-area .swiper {
        margin-top: 30px;
    }

    .reviews-content {
        padding: 20px;
    }

    .reviews-content p {
        margin: 20px 0 20px;
    }

}

/* reviews-area */

/* full-area */

.full-list {
    margin-top: 50px;
    gap: 30px;
}

.full-list li {
    flex: 1;
    padding: 25px 25px 35px;
    background: var(--text-secondary-color);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.full-list li:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.full-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    margin: 0 auto;
    background: #994AFB;
    color: var(--white-color);
}

.full-list li h3 {
    min-height: 58px;
    margin-top: 20px;
    font-size: 22px;
}

.full-number {
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: rgba(5, 84, 242, 0);
    text-stroke: 1px #994AFB;
    text-transform: none;
    -webkit-text-stroke: 1px #994AFB;
}

/* 1480px 小屏PC */
@media (max-width: 1480px) {
    .full-list {
        gap: 30px;
        margin-top: 45px;
    }

    .full-icon {
        width: 84px;
        height: 84px;
    }

    .full-list li h3 {
        min-height: 78px;
        margin-top: 35px;
        font-size: 21px;
    }

    .full-number {
        font-size: 34px;
    }
}

/* 1024px 平板 */
@media (max-width: 1366px) {
    .full-list {
        flex-wrap: wrap;
        gap: 30px;
    }

    .full-list li {
        flex: 1 1 calc(50% - 15px);
    }

    .full-icon {
        width: 78px;
        height: 78px;
    }

    .full-list li h3 {
        min-height: auto;
        margin-top: 30px;
        font-size: 20px;
    }

    .full-number {
        font-size: 32px;
    }
}

/* 768px 手机 */
@media (max-width: 768px) {
    .full-list {
        margin-top: 40px;
        gap: 20px;
    }

    .full-list li {
        flex: 1 1 100%;
    }

    .full-icon {
        width: 72px;
        height: 72px;
    }

    .full-list li h3 {
        margin-top: 25px;
        font-size: 19px;
    }

    .full-number {
        font-size: 30px;
    }
}

/* 380px 小屏手机 */
@media (max-width: 480px) {
    .full-list li {
        padding: 40px 16px 18px;
    }

    .full-icon {
        width: 66px;
        height: 66px;
    }

    .full-list li h3 {
        font-size: 18px;
    }

    .full-number {
        font-size: 28px;
    }
}

/* full-area */