.factory-form-title {
    text-align: center;
    margin-bottom: 50px;
}
.factory-form-container {
    margin-bottom: 50px;
}

/* General Styles */
.container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Product Listing Section */
.product-listing-section {
}

.pls-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.pls-header {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 0px;
}

.pls-sidebar {
    flex: 0 0 280px;
    /* 固定宽度侧边栏 */
    /*background-color: #fff;*/
    padding: 0 20px 0 0;
    align-self: flex-start;
    /* 确保侧边栏从顶部开始 */
}

@media (min-width: 768px) and (max-width: 1365px) {
    .pls-sidebar {
        flex: 0 0 25%;
    }
}

.pls-main-title-sidebar {
    font-size: 24px;
    font-weight: bold;
    margin-top: 0;
    /* 移除默认的上边距 */
    margin-bottom: 10px;
    text-wrap-mode: nowrap;
}

.pls-sidebar-description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.pls-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pls-category-item {
    margin-bottom: 15px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    color: #666666;
}

.pls-category-item>span:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    /* The arrow is a sibling img, not a child of this span */
}

.pls-sub-category-item>span:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*font-size: 18px;*/
    /* The arrow is a sibling img, not a child of this span */
}
.pls-category-item a:hover {
    color: #000;
}

.pls-category-item.active>span:first-child {
    color: #000;
    font-weight: 700;
}

.pls-category-item>span:first-child:hover {
    /* background-color: #f0f0f0; */
}

.pls-category-item.active>span:first-child:hover {
    /* background-color: #c4000f; */
}

.pls-arrow {
    width: 27px;
    /* Assuming this is the desired size */
    height: 27px;
    transition: transform 0.3s ease;
    position: absolute;
    right: 20px;
    top: 0;
    /* Adjust top if not perfectly aligned with span */
    display: none;
    /* Hidden by default */
    transform: rotate(0deg);
    /* Default rotation - assuming arrow.svg points right or down */
}

.pls-arrow svg path {
    fill: #999;
}

.pls-category-item.has-submenu.open>.pls-arrow svg path {
    fill: #000;
}

/* Show arrow only if item has a submenu */
.pls-category-item.has-submenu>.pls-arrow {
    display: inline-block;
    /* Or block, depending on layout needs */
}

/* Show arrow only if item has a submenu */
.pls-sub-category-item.has-submenu>.pls-arrow {
    display: inline-block;
    top: 8px;
    /* Or block, depending on layout needs */
}
/* Rotate arrow when item with submenu is open */
.pls-category-item.has-submenu.open>.pls-arrow {
    transform: rotate(180deg);
    /* Rotates to point upwards */
}
/* Rotate arrow when item with submenu is open */
.pls-sub-category-item.has-submenu.open>.pls-arrow {
    transform: rotate(180deg);
    /* Rotates to point upwards */
}

.pls-sub-categories {
    list-style: none;
    padding-left: 0;
    /* 子分类缩进 */
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.pls-third-categories {
    list-style: none;
    padding-left: 0;
    /* 子分类缩进 */
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.pls-category-item.active .pls-sub-categories,.pls-sub-category-item.active .pls-third-categories {
    max-height: 500px;
    /* 根据内容调整，确保能完全显示 */
}

.pls-sub-category-item {
    cursor: pointer;
    position: relative;
    padding: 8px 15px;
    font-size: 14px;
    color: #555;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pls-sub-category-item:hover {
    /* background-color: #f0f0f0; */
    color: #1a1a1a;
}

.pls-sub-category-item.active {
    /* background-color: #fde6e8; */
    /* 淡红色背景 */
    color: #000;
    font-weight: bold;
}

.pls-third-category-item {
    cursor: pointer;
    position: relative;
    padding: 8px 15px;
    font-size: 14px;
    color: #555;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pls-third-category-item:hover {
    /* background-color: #f0f0f0; */
    color: #1a1a1a;
}

.pls-third-category-item.active {
    /* background-color: #fde6e8; */
    /* 淡红色背景 */
    color: #000;
    font-weight: bold;
}

.pls-content-area {
    position: relative;
    flex: 1;
}

.pls-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    padding-top: 20px;
}

.pls-product-card {
    display: flex;
    /*background-color: #fff;*/
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pls-product-card a{
    width: 100%;
}
.pls-product-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 auto 10px;
    width: 90%;
    font-size: 14px;
}

.pls-product-card:hover {
    /*transform: translateY(-5px);*/
    /*box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);*/
}

/* 如果有图片，可以替换为以下样式 */

.pls-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.pls-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pls-pagination li a,
.pls-pagination li span {
    display: block;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #555;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.pls-pagination li a:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}

.pls-pagination li a.active {
    background-color: #e50012;
    color: #fff;
    border-color: #e50012;
    font-weight: bold;
}

.pls-pagination li span {
    border: none;
    padding: 10px 5px;
}

.pls-pagination .next {
    display: flex;
    align-items: center;
}

.pagination-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #555;
    /* 默认箭头颜色 */
    margin-left: 8px;
    transition: border-left-color 0.3s ease;
}

.pls-pagination li a.active .pagination-arrow,
.pls-pagination li a:hover .pagination-arrow {
    /* border-left-color: #e50012; */
    /* 如果active时也需要变色 */
}

.pls-pagination li a.active .pagination-arrow {
    border-left-color: #fff;
    /* Active 状态下箭头颜色 */
}
.pagination-container {
    padding: 0 15px;
}

.btn-about-us {
    background: #fff;
    color: #000;
    padding: 12px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-about-us:hover {
    background: #FF99D3;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

.product-section {
    padding: 100px 20px;
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
}

@media(max-width:767px) {
    .product-section {
        padding: 50px 15px;
    }
}

.product-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.product-container p {
    font-size: 18px;
}

@media(min-width:768px) and (max-width:1365px) {
    .product-section {
        padding: 50px 15px;
    }

    .product-container h2 {
        font-size: 28px;
    }

    .product-container p {
        font-size: 16px;
    }
}

@media(max-width:767px) {
    .product-container p {
        font-size: 16px;
    }
}

.pls-product-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

@media(min-width:768px) and (max-width:1365px) {
    .pls-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:767px) {
    .pls-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pls-product-card {
    background-color: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pls-product-card:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); */
}

.pls-image-placeholder {
    /*width: 100%;*/
    /*height: 220px;*/
    /* 根据实际图片比例调整 */
    /*background-color: #e9ecef;*/
    /* 占位符背景色 */
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    color: #adb5bd;
    font-size: 14px;
}

/* 如果有图片，可以替换为以下样式 */

.pls-product-card img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    /*height: 220px;*/
    aspect-ratio: 1;
    object-fit: cover;
}

.pls-product-name {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin: 0 auto 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 90%;
}

@media(min-width:768px) and (max-width:1365px) {
    .pls-product-name {
        font-size: 14px;
        /*height: 55px;*/
    }
}

@media(max-width:767px) {
    .pls-product-name {
        font-size: 14px;
        /*height: 55px;*/
    }
}

.pls-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.pls-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pls-pagination li a,
.pls-pagination li span {
    display: block;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #555;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.pls-pagination li a:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}

.pls-pagination li a.active {
    background-color: #e50012;
    color: #fff;
    border-color: #e50012;
    font-weight: bold;
}

.pls-pagination li span {
    border: none;
    padding: 10px 5px;
}

.pls-pagination .next {
    display: flex;
    align-items: center;
}

.pagination-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #555;
    /* 默认箭头颜色 */
    margin-left: 8px;
    transition: border-left-color 0.3s ease;
}

.pls-pagination li a.active .pagination-arrow,
.pls-pagination li a:hover .pagination-arrow {
    /* border-left-color: #e50012; */
    /* 如果active时也需要变色 */
}

.pls-pagination li a.active .pagination-arrow {
    border-left-color: #fff;
    /* Active 状态下箭头颜色 */
}


.class-title {
    font-size: 24px;
    font-family: InterBold;
    width: 100%;
    max-width: 1680px;
    margin: auto;
    padding: 40px 15px;
}

.class-title h2 {
    text-align: center;
}

@media(min-width:768px) and (max-width:1365px) {
    .class-title h2 {
        font-size: 28px;
    }
}

/* Process Grid */
.process-section {
    width: 100%;
    padding: 70px 0;
    background-color: #f7f7f7
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1680px;
    margin: auto;
}

.process-item {
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.process-item:hover {}

.process-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.process-icon svg {
    color: #333;
    transition: all 0.3s ease;
}

.process-icon img {
    width: 38px;
}


.process-step {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

.process-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    flex-grow: 1;
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .process-section {
        padding: 80px 0;
    }

    .process-header {
        margin-bottom: 60px;
    }

    .process-title {
        font-size: 36px;
    }

    .process-description {
        font-size: 16px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .process-item {
        padding: 30px 25px;
    }

    .process-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .process-icon svg {
        width: 32px;
        height: 32px;
    }

    .process-step {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .process-text {
        font-size: 14px;
    }
}

/* Mobile Styles (max-width: 767px) */
@media (max-width: 767px) {
    .process-section {
        padding: 0px 0;
    }

    .process-section .container {
        padding: 0 15px;
    }

    .process-header {
        margin-bottom: 50px;
    }

    .process-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .process-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .process-description {
        font-size: 15px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .process-item {
        padding: 10px;
        text-align: center;
    }

    .process-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 20px;
    }

    .process-icon svg {
        width: 28px;
        height: 28px;
    }

    .process-step {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .process-text {
        font-size: 14px;
        line-height: 1.5;
    }
}

.work-box-section {
    padding: 45px 20px 120px;
}

@media(min-width:768px) and (max-width:1365px) {
    .work-box-section {
        padding: 45px 15px;
    }
}

@media(max-width:767px) {
    .work-box-section {
        padding: 0px 15px;
    }
}

.work-item {
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}
.work-item-up {
    display: flex;
    gap: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.work-item-down {
    padding-top: 20px;
}

.work-list-box-nav-item-content {
    /*width: 100%;*/
    flex: 1;
    min-height: 33px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    /*padding-left: 15px;*/
}

@media(min-width:768px) and (max-width:1365px) {
    .work-list-box-nav-item-content {
        min-height: 0;
    }
}

@media(max-width:767px) {
    .work-list-box-nav-item-content {
        min-height: 0px;
    }
}

.work-list-box-nav-item-content p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding-top 0.3s ease-in-out;
}

.work-list-box-nav-item-active p {
    max-height: 200px;
    opacity: 1;
    padding-top: 8px;
    font-size: 18px;
}
.work-list-box-nav-item-active .work-list-box-nav-circle {
    box-shadow: 0 0 0 3px #FFFFFF;
}

@media(min-width:768px) and (max-width:1365px) {
    .work-list-box-nav-item-active p {
        font-size: 16px;
    }
}

.work-list-box-nav-item::before {
    content: '';
    position: absolute;
    width: 2px;
    left: 18.5px;
    height: 100%;
    /*background-color: #000;*/
    /*color: #000;*/
    line-height: 1;
    transition: transform 0.3s ease-in-out;
    border-left: 1px dashed #FFBB0E;
}
.work-list-box-nav-item:first-child::before {
    height: 50%;
    top: 50%;
}
.work-list-box-nav-item:last-child::before {
    height: 50%;
    top: 0;
}

.work-box-container {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    text-align: center;
}

.work-box-container h2 {
    font-size: 40px;
    font-family: InterBold;
    /*color: #4b5956;*/
    margin-bottom: 10px;
    padding-bottom: 20px;
}

@media(max-width:767px) {
    .work-box-container h2 {
        font-size: 28px;
    }
}

.work-box-container p {
    font-size: 16px;
    /*color: #999;*/
    font-weight: 700;
}

.work-list-box-nav-number{
    font-size: 18px;
    font-family: InterBold;
    font-weight: bold;
    display: flex;
    align-items: start;
}

.work-item-nav-number {
    font-size: 26px;
    font-family: InterBold;
    font-weight: bold;
    display: flex;
    width: 52px;
    height: 52px;
    color: #FFFFFF;
    background: #FFBB0E;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}


.work-box {
    width: 100%;
    max-width: 1680px;
    margin: 50px auto 0px;
}

.work-box>h2 {
    text-align: center;
}

.work-box>p {
    text-align: center;
    font-size: 18px;
}

@media(min-width:768px) and (max-width:1365px) {
    .work-box>h2 {
        font-size: 28px;
    }

    .work-box>p {
        font-size: 16px;
    }
}

@media(max-width:767px) {
    .work-box>p {
        font-size: 14px;
    }
}

.work-title {
    font-size: 32px;
    width: 100%;
    max-width: 1680px;
    margin: auto;
    text-align: center;
}

.work-title h2 {
    padding-bottom: 50px;
}

.work-subtitle {
    font-size: 18px;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.work-list-box {
    margin-top: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 50px;
}

@media(max-width:767px) {
    .work-list-box {
        gap: 20px;
    }
}

.work-list-box-left {
    /*width: 30%;*/
    min-width: 30%;
}

.work-list-box-left>p {
    font-size: 16px;
    color: #000;
    font-weight: 700;
}

.work-list-box-left h2 {
    font-size: 28px;
    padding-bottom: 20px;
}

@media (max-width: 767px) {
    .work-list-box-left h2 {
        text-align: center;
    }
}

.work-list-box-nav {
    width: 100%;
    min-width: 50%;
    display: flex;
    /*gap: 20px;*/
    flex-direction: column;
}

.work-list-box-nav-item {
    /*color: #8A8A8A;*/
    padding: 10px 15px;
    display: flex;
    gap: 15px;
    justify-content: left;
    align-items: center;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
    background: #FFF;
}
.work-list-box-nav-item-active {
    background: #FFBB0E;
}
.work-list-box-nav-circle {
    width: 10px;
    height: 10px;
    background-color: #FFBB0E;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.work-list-box-nav-item h4 {
    color: #4e5956;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}
.work-list-box-nav-item-active .work-list-box-nav-number {
    color: #FFF;
}

.work-list-box-nav-item-active h4 {
    color: #FFF;
}

.work-list-box-nav-item-line {
    width: 2px;
    height: 100%;
    background: #e9e9e9;
    position: absolute;
    left: 0;
    top: 0;
}

.work-list-box-nav-item-line-active {
    background: linear-gradient(to bottom, #0033A1 50%, #e9e9e9 50%);
    background-size: 100% 200%;
    animation: changeColor 5s forwards;
}


.work-list {
    overflow: hidden;
}

.work-item-title {
    position: absolute;
    bottom: 0px;
    padding: 20px;
    color: #FFFFFF;
    /*//添加一个渐变背景色，从透明到黑色*/
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
    width: 100%;
}

.work-item-right {
    width: 50%;
    height: auto;
    /*align-items: center;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.work-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (min-width: 768px) and (max-width: 1365px) {
    .work-box {
        width: 100%;
        max-width: 1680px;
        margin: 50px auto 50px;
        padding: 0 15px;
    }

    .work-title {
        font-size: 24px;
        font-family: InterBold;
        width: 100%;
        max-width: 1680px;
        margin: auto;
        text-align: center;
    }

    .work-subtitle {
        font-size: 18px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .work-list-box {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .work-list-box-nav {
        width: 100%;
        min-width: 290px;
        display: flex;
        /*gap: 20px;*/
        flex-direction: column;
    }

    .work-list-box-nav-item-line {
        width: 2px;
        height: 100%;
        background: #e9e9e9;
        position: absolute;
        left: 0;
        top: 0;
    }

    .work-list-box-nav-item-line-active {
        background: linear-gradient(to bottom, #0033A1 50%, #e9e9e9 50%);
        background-size: 100% 200%;
        animation: changeColor 5s forwards;
    }


    .work-list {
        overflow: hidden;
    }

    .work-item-title {
        position: absolute;
        bottom: 0px;
        padding: 10px;
        color: #FFFFFF;
        /*//添加一个渐变背景色，从透明到黑色*/
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
        width: 100%;
    }

    .work-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .work-box {
        width: 100%;
        max-width: 1680px;
        margin: 50px auto 0px;
    }

    .work-title {
        font-size: 24px;
        font-family: InterBold;
        width: 100%;
        max-width: 1680px;
        margin: auto;
        text-align: center;
        padding: 0 10px;
    }

    .work-subtitle {
        font-size: 18px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        padding: 0 10px;
    }

    .work-list-box {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        padding: 0;
    }

    .work-list-box-nav {
        width: 100%;
        display: flex;
        /*gap: 20px;*/
        flex-direction: column;
        padding: 0;
    }

    .work-list-box-nav-item-line {
        width: 2px;
        height: 100%;
        background: #e9e9e9;
        position: absolute;
        left: 0;
        top: 0;
    }

    .work-list-box-nav-item-line-active {
        background: linear-gradient(to bottom, #0033A1 50%, #e9e9e9 50%);
        background-size: 100% 200%;
        animation: changeColor 5s forwards;
    }


    .work-list {
        overflow: hidden;
        width: 100%;
        margin-top: 20px;
    }

    .work-item-title {
        position: absolute;
        bottom: 0px;
        padding: 20px;
        color: #FFFFFF;
        /*//添加一个渐变背景色，从透明到黑色*/
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
        width: 100%;
    }

    .work-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.customer-feedback-section {
    width: 100%;
}

@media(max-width:767px) {
    .customer-feedback-section {
        padding: 50px 15px;
    }
}

.customer-feedback-container {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media(max-width:767px) {
    .customer-feedback-container {
        padding: 0;
    }
}

.customer-feedback-container p {
    font-size: 18px;
}

.waterfall-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    /* 24px */
    margin-top: 4rem;
    /* 64px */
    max-height: 740px;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.waterfall-column {
    position: relative;
    width: 430px;
    will-change: transform;
    flex-shrink: 0;
    /* Prevent columns from shrinking */
}

.card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    box-sizing: border-box;
}

.card p {
    margin: 0 0 1rem 0;
    color: #4b5563;
    line-height: 1.6;
}

.author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.author div h4 {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

.author div p {
    margin: 0;
    font-size: 0.875rem;
    color: #6b7280;
}

@media(min-width:768px) and (max-width:1365px) {
    .waterfall-column {
        width: 320px;
    }

    .card {
        width: 100%;
        left: 0px;
    }

    .card p {
        font-size: 14px;
    }
}

@media(max-width:767px) {
    .card {
        width: calc(100% - 60px);
        left: 30px;
        right: 30px;
    }

    .card p {
        font-size: 14px;
    }
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1680px;
    padding: 0 20px;
    /* Max width of the features grid */
    margin: 0 auto;
}

.feature-card {
    background-color: #fff;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-number-container {
    display: flex;
    align-items: baseline;
    /* Aligns number and suffix */
    justify-content: center;
    margin-bottom: 10px;
}

.feature-number {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.feature-suffix {
    font-size: 30px;
    /* Slightly smaller suffix */
    font-weight: bold;
    color: #333;
    margin-left: 2px;
    /* Space between number and suffix */
    line-height: 1;
}

.feature-description {
    font-size: 18px;
    color: #000;
    line-height: 1.5;
    padding: 0;
    margin: 0;
}

@media(min-width:768px) and (max-width:1365px) {
    .feature-description {
        font-size: 16px;
    }
}

@media(max-width:767px) {
    .feature-description {
        font-size: 14px;
    }
}

/* Responsive adjustments for Features Section */
@media (max-width: 991px) {
    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .showroom-hero-title {
        font-size: 30px;
    }

    .features-section-main-title {
        font-size: 28px;
    }

    .feature-number {
        font-size: 32px;
    }

    .feature-suffix {
        font-size: 24px;
    }
}

@media (max-width: 767px) {

    .showroom-hero-section,
    .showroom-features-section {
        padding: 40px 0;
    }

    .showroom-hero-title {
        font-size: 26px;
    }

    .features-section-main-title {
        font-size: 24px;
    }

    .hero-play-button {
        width: 70px;
        height: 70px;
    }

    .hero-play-button .play-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 575px) {
    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Single column on very small screens */
        gap: 20px;
    }

    .showroom-hero-title {
        font-size: 22px;
    }

    .features-section-main-title {
        font-size: 20px;
    }

    .feature-number {
        font-size: 24px;
    }

    .feature-suffix {
        font-size: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .hero-play-button {
        width: 60px;
        height: 60px;
    }

    .hero-play-button .play-icon {
        width: 30px;
        height: 30px;
    }
}

.data-section {
    width: 100%;
    padding: 80px 0;
}

@media(max-width:767px) {
    .data-section {
        padding: 0px 0px 30px;
    }
}

.btn-about-us {
    background: #FF99D3;
    color: #fff;
    padding: 12px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

@media(min-width:768px) and (max-width:1365px) {
    .btn-about-us {
        font-size: 14px;
        width: 180px;
        padding: 10px 10px;
    }
}

@media(max-width:767px) {
    .btn-about-us {
        font-size: 14px;
        padding: 10px 20px;
    }
}

.btn-about-us:hover {
    background: #FF99D3;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
    font-weight: 700;
}

.other-section {
    width: 100%;
    margin-top: -100px;
    padding-bottom: 100px;
}

@media(min-width:768px) and (max-width:1365px) {
    .other-section {
        margin-top: 0px;
        padding-bottom:0;
    }
}

.other-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: #EEEEEE;
    padding: 50px 100px;
}

.other-container p {
    font-size: 18px;
}

@media(max-width:767px) {
    .other-section {
        margin-top: 0px;
        padding: 0;
    }

    .other-container {
        padding: 50px 15px;
    }

    .other-container p {
        font-size: 14px;
    }
}

.product-class-list {
    width: 100%;
    position: relative;
}

.show-class-title {
    border: 1px solid #b2b2b2;
    border-radius: 6px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.mobile-nav {
    position: absolute;
    background: #ffffff;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    top: 48px;
    /*下左右添加圆角*/
    border-radius: 10px 10px 10px 10px;
}

.product-class-ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    width: 100%;
}

.product-class-ul li {
    height: 35px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-class-ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-class-ul-active {
    background-color: #4b5956;
    cursor: pointer;
    color: #FFFFFF;
}

.product-class-ul-active h2 {
    color: #FFFFFF !important;
}

.product-class-ul h2 {
    color: #000000;
    font-size: 16px;
    margin: 0;
}

/* 表单 */
.visit-form {
    width: 70% !important;
}
@media (max-width: 767px) {
    .visit-form {
        width: auto !important;
    }
}
