
.c_solutions {
    width: 100%;
    max-width: 1400px;
    padding: 60px 40px;
    box-sizing: border-box;
    background: #ffffff;
    margin: auto;
}

.sol_cat_title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    letter-spacing: 1px;
    position: relative;
    padding-left: 16px;
}

.sol_cat_title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 28px;
    background: linear-gradient(180deg, #4ec548, #087a01);
    border-radius: 3px;
}

/* 顶部 Banner 大图 */
.food_banner {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    height: 330px;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
}

.food_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.food_banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.food_banner_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #fff;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* 主标题 */
.food_main_title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: 6px;
    line-height: 1.4;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.food_main_title::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #4ec548, #087a01);
    margin: 24px auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(10, 153, 2, 0.4);
}

.sol_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.sol_item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.sol_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(10, 153, 2, 0.12);
    border-color: rgba(10, 153, 2, 0.2);
}

.sol_image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.sol_image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
    pointer-events: none;
}

.sol_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sol_item:hover .sol_image img {
    transform: scale(1.08);
}

.sol_item > a {
    display: block;
    text-decoration: none;
}

.sol_name {
    font-size: 15px;
    color: #1a1a1a;
    margin: 0 0 0px 0;
    text-align: left;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 10px;
}


.sol_item:hover .sol_name {
    color: #4ec548;
}

.sol_item:hover .sol_name::before {
    height: 20px;
}

.sol_desc {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    text-align: left;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 5px 10px;
}
.c_floor_guide {
    width: 100%;
    padding: 10px 5%;
    box-sizing: border-box;
    background: linear-gradient(180deg, #f8faf8 0%, #f0f7f0 100%);
}

.c_floor_guide .fg_title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: 1px;
    position: relative;
}

.c_floor_guide .fg_title::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #4ec548, #087a01);
    margin: 16px auto 0;
    border-radius: 2px;
}

.c_floor_guide .fg_subtitle {
    text-align: center;
    font-size: 15px;
    color: #888;
    margin-bottom: 50px;
}

.c_floor_guide .fg_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.c_floor_guide .fg_item {
    width: 100%;
    padding: 24px 20px;
    margin-bottom: 0;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    border-radius: 12px;
    border: 1px solid #e8f0e8;
    background: #fff;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.c_floor_guide .fg_item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(10, 153, 2, 0.1);
    border-color: #4ec548;
}



.c_floor_guide .fg_icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #4ec548, #087a01);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(10, 153, 2, 0.2);
}

.c_floor_guide .fg_icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.c_floor_guide .fg_content {
    flex: 1;
    min-width: 0;
}

.c_floor_guide .fg_content .fg_name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.c_floor_guide .fg_item:hover .fg_name {
    color: #4ec548;
}

.c_floor_guide .fg_content .fg_name .fg_num {
    display: inline-block;
    margin-right: 6px;
    color: #4ec548;
    font-weight: 700;
}

.c_floor_guide .fg_content .fg_desc {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

@media screen and (max-width: 1200px) {
    .sol_grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .c_floor_guide .fg_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 860px) {
    .c_solutions {
        padding: 30px 20px;
    }

    .sol_cat_title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .sol_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 30px;
    }

    .sol_item > a {

    }

    .sol_image {
        height: 160px;
    }

    .sol_name {
        font-size: 15px;
    }

    .sol_desc {
        font-size: 12px;
    }

    .c_floor_guide {
        padding: 10px 20px;
    }

    .c_floor_guide .fg_title {
        font-size: 24px;
    }

    .c_floor_guide .fg_subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .c_floor_guide .fg_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .c_floor_guide .fg_item {
        padding: 16px 14px;
    }

    .c_floor_guide .fg_icon {
        width: 36px;
        height: 36px;
        margin-right: 10px;
    }

    .c_floor_guide .fg_icon img {
        width: 20px;
        height: 20px;
    }

    .c_floor_guide .fg_content .fg_name {
        font-size: 14px;
    }

    .c_floor_guide .fg_content .fg_desc {
        font-size: 12px;
    }
}

@media screen and (max-width: 560px) {
    .c_solutions {
        padding: 24px 16px;
    }

    .sol_cat_title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .sol_grid {
        grid-template-columns:repeat(2, 1fr);
        gap: 14px;
    }

    .sol_image {
        height: 150px;
    }

    .c_floor_guide .fg_grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 1440px) {
    .food_banner {
    height: 280px;
    }
    .c_solutions{
        padding:10px 10px;
        max-width: 1200px;
    }
}
/* 响应式 */
@media (max-width: 1024px) {
    .food_banner { height:250px; }
    .food_main_title { font-size: 30px; }
    .food_filter_grid { grid-template-columns: repeat(2, 1fr); }
    .food_system_card { flex-direction: column; }
    .food_system_img { flex: 0 0 auto; width: 100%; height: 200px; }
    .food_form_grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .food_wrap { padding: 20px 15px; }
    .food_banner { height: 150px; }
    .food_main_title { font-size: 24px; letter-spacing: 2px; }
    .food_section_title { font-size: 22px; }
    .food_filter_grid { grid-template-columns: 1fr; }
    .food_form_section { padding: 30px 20px; }
    .food_form_title { font-size: 20px; }
    .food_form_grid { grid-template-columns: 1fr 1fr; }
    .food_form_submit { padding: 12px 40px; font-size: 14px; }
}

@media (max-width: 480px) {
    .food_banner { height: 200px; }
    .food_main_title { font-size: 20px; }
    .food_section_title { font-size: 18px; }
    .food_form_grid { grid-template-columns: 1fr; }
    .food_form_phone b { font-size: 18px; }
}

.sol_match_table_wrapper {
    overflow-x: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
}

.sol_match_table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.sol_match_table thead tr {
    background: linear-gradient(135deg, #4ec548, #087a01);
}

.sol_match_table thead th {
    padding: 16px 20px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
    letter-spacing: 1px;
}

.sol_match_table thead th:first-child {
    border-radius: 8px 0 0 0;
}

.sol_match_table thead th:last-child {
    border-radius: 0 8px 0 0;
}

.sol_match_table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.25s ease;
}

.sol_match_table tbody tr:hover {
    background: #fff9f0;
}

.sol_match_table tbody tr:last-child {
    border-bottom: none;
}

.sol_match_table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 8px;
}

.sol_match_table tbody tr:last-child td:last-child {
    border-radius: 0 0 8px 0;
}

.sol_match_table tbody td {
    padding: 14px 20px;
    text-align: center;
    font-size: 14px;
    color: #333;
    vertical-align: middle;
}

.sol_match_table tbody td:first-child {
    text-align: left;
}

.sol_match_table tbody td a {
    color: #4ec548;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
}

.sol_match_table tbody td a:hover {
    color: #4ec548;
    text-decoration: underline;
}

.sol_match_table tbody td:nth-child(2) {
    color: #666;
    font-size: 13px;
}

.sol_divider {
    color: #ddd;
    margin: 0 8px;
}

@media screen and (max-width: 768px) {
    .sol_match_table_wrapper {
        margin-top: 15px;
        border-radius: 6px;
    }

    .sol_match_table thead th {
        padding: 12px 10px;
        font-size: 13px;
    }

    .sol_match_table tbody td {
        padding: 10px 10px;
        font-size: 12px;
    }

    .sol_divider {
        margin: 0 4px;
    }
}
