body,
html {
    margin: 0;
    padding: 0;
}

#app {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #f9f9f9;
    /* 允许垂直滚动 */
}

#app::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari 和 Opera */
}

#app {
    -ms-overflow-style: none;
    /* IE 和 Edge */
    scrollbar-width: none;
    /* Firefox */
}

.content {
    .content-bg {
        width: 100%;
        height: auto;
        background-image: url(https://ts-platform.oss-cn-hangzhou.aliyuncs.com/static/jd-web/20250429/043001.png);

    }

    .des {
        width: 100%;
        height: auto;
        /* background-image: url(https://ts-platform.oss-cn-hangzhou.aliyuncs.com/static/jd-crm/20250429/back.png); */
        display: flex;
        margin-bottom: 76px;

        .des-left {
            width: 415px;
            margin-left: 360px;
            height: auto;
            object-fit: cover;

            .images {
                /* object-fit: cover：覆盖整个容器（可能裁剪图片）。

object-fit: contain：完整显示图片（可能留白）。 */
                width: 415px;
                height: auto;
                object-fit: contain;
            }
        }

        .des-right {
            margin-left: 43px;
            margin-right: 360px;
            width: 100%;

            .name {
                font-family: PingFangSC, PingFang SC;
                font-weight: 500;
                font-size: 36px;
                color: #333333;
                line-height: 50px;
                text-align: left;
                font-style: normal;
                margin-bottom: 54px;
                margin-top: 60px;

                .point {
                    font-family: PingFangSC, PingFang SC;
                    font-weight: 500;
                    font-size: 24px;
                    color: #333333;
                    line-height: 50px;
                    text-align: left;
                    font-style: normal;
                }

                .tit {
                    font-family: PingFangSC, PingFang SC;
                    font-weight: 500;
                    font-size: 20px;
                    color: #333333;
                    font-style: normal;
                }
            }

            .lines {
                width: 100%;
                height: 1px;
                background: #9A9A9A;
                opacity: 0.31;
            }

            .blurb {
                font-family: PingFangSC, PingFang SC;
                font-weight: 400;
                font-size: 13px;
                color: #666666;
                line-height: 43px;
                text-align: left;
                font-style: normal;
                margin-top: 30px;
            }


        }
    }

    .labels-content {
        display: flex;
        margin-top: 72px;
        flex-wrap: wrap;
        margin: 0 360px;

        .labels {
            margin-right: 16px;

            .labels-item {
                padding: 12px 14px;
                background: #FFFFFF;
                font-family: PingFangSC, PingFang SC;
                font-weight: 400;
                font-size: 18px;
                color: #666666;
                line-height: 25px;
                text-align: left;
                font-style: normal;
                margin-bottom: 22px;
            }
        }
    }

    .case-show {
        font-family: SJrousong, SJrousong;
        font-weight: 400;
        font-size: 24px;
        color: #333333;
        line-height: 24px;
        text-align: center;
        font-style: normal;
        margin: 76px 0 48px;
    }

    .case-content {
        display: flex;
        margin: 0 360px;

        .case-item {
            margin-right: 20px;

            a {
                text-decoration: none;
            }

            .case-bg {
                width: 285px;
                height: 380px;
                /* height: 553px; */
                /* background-color: #333333; */
                height: auto;
                object-fit: contain;

                .images {
                    width: 285px;
                    /* height: 553px; */
                    height: auto;
                    object-fit: contain;
                }
            }

            .name {
                font-family: PingFangSC, PingFang SC;
                font-weight: 400;
                font-size: 14px;
                color: #333333;
                line-height: 20px;
                text-align: left;
                font-style: normal;
                margin-top: 24px;
            }

            .des-detail {
                font-family: PingFangSC, PingFang SC;
                font-weight: 300;
                font-size: 12px;
                color: #666666;
                line-height: 26px;
                text-align: left;
                font-style: normal;
                margin-top: 18px;
                margin-bottom: 16px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                width: 285px;
                /* 根据实际情况调整宽度 */
            }

            .des-line {
                height: 1px;
                background: #9A9A9A;
                opacity: 0.31;
                margin-bottom: 296px;
            }
        }
    }
}

/* 分页 */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
    font-size: 14px;

    .page-item {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 32px;
        height: 32px;
        margin: 0 4px;
        padding: 0 4px;
        border: 1px solid #d9d9d9;
        border-radius: 4px;
        background: #fff;
        cursor: pointer;
        user-select: none;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
    }

    .page-item:hover {
        border-color: #3E3E3E;
        color: #BDBDBD;
    }

    .page-item.active {
        border-color: #3E3E3E;
        background: #3E3E3E;
        color: #fff;
    }

    .page-item.disabled {
        cursor: not-allowed;
        color: #d9d9d9;
        border-color: #d9d9d9;
        background: #f5f5f5;
    }

    .ellipsis {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
    }
}