.product_one_card {
    width: 24%;
    height: 290px;
    /*padding-top: 50%    ; !* 高度为父元素宽度的50% *!*/
    /*position: relative; !* 为了让padding-top生效，需要设置position为relative *!*/
    background-color: #fff;
    border: 1px solid #e6e6e6;
    margin-top: 10px;
    margin-left: 8px;
}

.product_one_card h3 {
    margin: 0;
    height: 50px;
    line-height: 50px;
    color: #fff;
    background-color: #FE003EFF;
}

.square-image-container {
    width: 100%;
    /* 设置容器宽度为50% */
    position: relative;
    /* 设置为相对定位，以便在内部元素中使用绝对定位 */
}

.square-image-container::before {
    content: "";
    display: block;
    padding-bottom: 100%;
    /* 设置padding-bottom为100%，使高度与宽度一样 */
}

.square-image {
    position: absolute;
    /* 设置为绝对定位 */
    top: 0;
    left: 0;
    width: 100%;
    /* 设置图片宽度为100% */
    height: 100%;
    /* 设置图片高度为100% */
    object-fit: cover;
    /* 保持图片比例并填充整个容器 */
}

.level3_nav {
    width: 30%;
    background-color: #f6f3f6;
}
.level3_nav_item {
    height: 30px;
    line-height: 30px;
    background-color: #adadcd;
    margin: 5px;
}

.level3_content {
    width: 100%;
    display: flex;flex-wrap: wrap;
    justify-content: flex-start;
}

.el-carousel__container {
    position: relative;
    height: 500px;
}
.introduce {
    font-size: 12px;
    color: #8c939d;
    padding-left: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2; /* 控制显示的行数 */
    max-height: 3em; /* 控制最大高度，这里假设每行高度为1.5em */
}

.triangle-left {
    margin-right: 4px;
    margin-top: 6px;
    width: 6px; /* 三角形的宽度 */
    height: 6px; /* 三角形的高度 */
    border-left: 2px solid #C0C4CC; /* 左边的边框，可以改变颜色 */
    border-bottom: 2px solid #C0C4CC; /* 底部的边框，可以改变颜色 */
    transform: rotate(-135deg); /* 将矩形元素逆时针旋转45度，形成直角三角形 */
}

