/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* 头部样式 */
.header_section,
.header_area {
    width: 100%;
}

/* 顶部橙色区域 */
.header_top {
    background-color: #FF4C00;
    padding: 15px 0;
}

.header_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */
.header_logo {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header_logo img {
    height: 80px;
    width: auto;
    display: block;
}

.enquire_btn {
    display: none;
    background-color: #00BCD4;
    color: white;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.enquire_btn:hover {
    background-color: #0097A7;
}

/* 搜索框 */
.header_search {
    flex: 1;
    max-width: 500px;
}

.search_form {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
}

.search_btn {
    background-color: #00BCD4;
    border: 0.8px solid #d8d8d8;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search_btn svg {
    color: white;
    width: 24px;
    height: 24px;
}

.search_input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
}

.search_input::placeholder {
    color: #999;
}

/* 联系信息 */
.header_contact {
    text-align: right;
    color: white;
    flex-shrink: 0;
}

.contact_phone {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 2px;
}

.contact_email {
    font-size: 15px;
}

.contact_email a {
    color: white;
}

.contact_link {
    font-size: 14px;
}

.contact_link a {
    color: white;
}

/* 导航栏 */
.header_nav {
    background-color: #11b1c9;
    position: relative;
}

.nav_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    min-height: 45px;
}

.nav_menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav_item {
    flex: 1;
    position: relative;
}

.nav_item>a {
    display: block;
    padding: 12px 15px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.nav_item>a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* 下拉菜单样式 */
.submenu_dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f5f5f5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
    min-width: 600px;
}

.nav_item_has_submenu:hover .submenu_dropdown {
    opacity: 1;
    visibility: visible;
}

.submenu_container {
    display: flex;
    gap: 0;
    padding: 20px 0;
}

.submenu_column {
    flex: 1;
    padding: 0 20px;
    border-right: 1px solid #ddd;
}

.submenu_column:last-child {
    border-right: none;
}

.submenu_title {
    color: #FF4C00;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #11b1c9;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.submenu_title:hover {
    color: #11b1c9;
}

.submenu_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu_list li {
    margin-bottom: 8px;
}

.submenu_list li a {
    color: #333;
    font-size: 13px;
    display: block;
    padding: 4px 0;
    transition: color 0.2s;
}

.submenu_list li a:hover {
    color: #00BCD4;
}

/* 移动端菜单按钮 */
.mobile_menu_toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.toggle_bar {
    width: 28px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .header_container {
        gap: 15px;
        display: grid;
        align-items: flex-start;
    }

    .header_logo {
        flex-shrink: 0;
        order: 1;
    }

    .header_logo img {
        height: 60px;
    }

    .search_input {
        padding-right: 750px;
    }

    .enquire_btn {
        display: block;
        width: 120px;
    }

    .header_search {
        flex: 1;
        max-width: none;
        order: 2;
        align-self: center;
    }

    .header_contact {
        display: none;
    }

    .header_nav {
        margin: 0 20px;
    }

    .nav_item>a {
        padding: 12px 10px;
        font-size: 13px;
    }
}

@media (max-width: 820px) {
    .nav_container {
        padding: 0;
    }

    .header_container {
        gap: 15px;
    }

    .header_logo img {
        height: 55px;
    }

    .enquire_btn {
        width: 110px;
        font-size: 11px;
        padding: 6px 12px;
    }

    .search_input {
        padding-right: 550px;
    }

    .header_nav {
        margin: 0 15px;
    }

    .nav_menu {
        flex-wrap: wrap;
    }

    .nav_item {
        flex: 0 0 auto;
    }

    .nav_item>a {
        padding: 10px 12px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .header_top {
        padding: 12px 0;
    }

    .header_container {
        gap: 10px;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .header_logo {
        flex-shrink: 0;
    }

    .header_logo img {
        height: 50px;
    }

    .enquire_btn {
        display: block;
        width: 100%;
        font-size: 15px;
        padding: 5px 10px;
    }

    .header_search {
        flex: 1;
        max-width: none;
    }

    .search_input {
        padding-right: 510px;
        font-size: 13px;
    }

    .header_contact {
        display: none;
    }

    /* 移动端导航 */
    .header_nav {
        margin: 0;
    }

    .nav_container {
        padding: 0;
        min-height: 40px;
    }

    .mobile_menu_toggle {
        display: flex;
    }

    .nav_menu {
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 0;
        background-color: #000;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 999;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .submenu_dropdown {
        min-width: 100%;
    }

    .nav_menu.active {
        display: flex;
    }

    .nav_item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav_item:last-child {
        border-bottom: none;
    }

    .nav_item>a {
        text-align: left;
        padding: 14px 20px;
        font-size: 14px;
        border-left: 3px solid transparent;
    }

    .nav_item>a:hover {
        background-color: rgba(0, 0, 0, 0.15);
        border-left-color: white;
    }

}

@media (max-width: 480px) {
    .header_logo img {
        height: 45px;
    }

    .contact_phone {
        font-size: 16px;
    }

    .contact_email,
    .contact_link {
        font-size: 11px;
    }

    .search_input {
        font-size: 13px;
        padding-right: 160px;
    }
}

@media (max-width: 376px) {
    .search_input {
        font-size: 13px;
        padding-right: 120px;
    }
}

/* 轮播图区域***********************************/
.slidshow_section {
    width: 1260px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swidshow_container,
.swiper.slidshow_container {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    align-items: center;
}

.swiper-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent;
    height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #fff !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 28px;
    font-weight: bold;
}

.swiper-pagination {
    position: absolute;
    bottom: 22px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 20;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #fff;
    opacity: 0.48;
    margin: 0 6px !important;
    border-radius: 50%;
    border: 2px solid #10b5cc;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
    transition: 0.2s;
}

.swiper-pagination-bullet-active {
    background: #10b5cc;
    opacity: 1;
    border: 2px solid #fff200;
}

@media (max-width:1024px) {
    .slidshow_section {
        /* 拉满屏幕宽度（居中全屏出血） */
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding: 0;
        min-width: 0;
    }

    .swiper-slide img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
}

@media (max-width:480px) {

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px !important;
        font-weight: bold;
    }
}


/* 促销文字区域***********************************/

/* --- Promo Section --- */
.promo_section {
    padding: 60px 0 40px 0;
    background: #fff;
}

.promo_title_group {
    margin-bottom: 36px;
}

.title_line_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
}

.title_line_box .why_title {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
}

.promo_title {
    color: #e95d37;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    font-family: 'Roboto Slab', 'Roboto', Arial, sans-serif;
    line-height: 1.2;
    flex-shrink: 0;
    max-width: 700px;
}

.title_sep {
    flex-grow: 1;
    max-width: 200px;
    min-width: 40px;
    height: 0;
    border-bottom: 1px solid #11b1c9;
}

.promo_desc {
    max-width: 640px;
    margin: 0 auto;
    color: #444;
    font-size: 15px;
    text-align: center;
    line-height: 1.6;
    font-family: 'Roboto', Arial, sans-serif;
}

.promo_desc p {
    margin-bottom: 14px;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .promo_section {
        padding: 60px 25px 40px;
    }

    .title_sep {
        border-bottom-width: 1px !important;
    }
}

@media (max-width: 820px) {
    .promo_desc {
        font-size: 15px;
        max-width: 95%;
        padding: 0 18px;
    }

    .title_sep {
        max-width: 70px;
        min-width: 18px;
    }

    .title_line_box {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .promo_section {
        padding: 32px 0 20px 0;
    }

    .promo_title_group {
        margin-bottom: 16px;
    }

    .promo_title {
        font-size: 15px;
        max-width: 98%;
        margin: 0 8px;
        word-break: break-word;
    }

    .promo_sep {
        display: none;
    }

    .title_line_box {
        gap: 5px;
    }

    .title_sep {
        max-width: 30px;
        min-width: 10px;
    }
}

@media (max-width: 480px) {
    .promo_title_text {
        padding: 0 90px;
        font-weight: bold;
    }
}

/* 商品卡片区域***********************************/
.category_section {
    padding: 40px 0 50px 0;
    background: #fff;
}

.Popular_sep {
    max-width: 350px !important;
}

.category_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1280px;
    margin: 0 auto;
    gap: 20px;
}

.category_card {
    background: #fff;
    box-shadow: 0 2px 8px rgba(40, 52, 82, 0.04);
    display: flex;
    flex-direction: column;
    min-height: 320px;
    transition: box-shadow .22s;
    overflow: hidden;
}

.category_img_box {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
}

.category_img {
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    display: block;
}

.category_content {
    padding: 10px 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.category_title {
    font-size: 18px;
    color: #ff4c00;
    font-weight: bold;
    margin-bottom: 18px;
}

.category_desc {
    font-size: 15px;
    color: #444;
    line-height: 1.5;
    word-break: break-word;
}

/* 响应式布局 - 平板 */
@media (max-width: 1024px) {
    .category_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 18px;
        padding: 0 30px;
    }

    .category_content {
        padding: 0px 8px;
    }
}

@media (max-width: 768px) {
    .Popular_sep {
        max-width: 215px !important;
    }
}

@media (max-width: 480px) {
    .category_grid {
        gap: 16px 12px;
    }

    .category_card {
        min-height: 160px;
    }

    .category_content {
        padding: 11px 4px 13px 4px;
    }

    .Popular_sep {
        max-width: 50px !important;
    }
}

/* 当下热门区域***********************************/
.hot_right_now_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}

.hot_sep {
    min-width: 570px !important;
    border-bottom: 1px solid #11b1c9;
}

.hot_right_now_container .swiper-wrapper {
    align-items: center;
}

.hot_right_now_container .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.hot_right_now_container .swiper-slide img {
    max-width: 355px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.hot_right_now_container .swiper-button-next,
.hot_right_now_container .swiper-button-prev {
    top: 50%;
    width: 46px !important;
    height: 46px !important;
    margin-top: -23px;
    border-radius: 50%;
    color: #000 !important;
    z-index: 2;
}

.promo_title_group {
    margin-bottom: 38px;
}

.promo_title {
    font-size: 32px;
    font-weight: bold;
    color: #ff7a3d;
    margin: 0 22px;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .hot_right_now_container {
        max-width: 98vw;
    }

    .hot_right_now_container .swiper-slide img {
        max-width: 600px !important;
    }

    .hot_right_now_container .swiper-button-next,
    .hot_right_now_container .swiper-button-prev {
        width: 34px !important;
        height: 34px !important;
        margin-top: -17px;
    }

    .promo_title {
        font-size: 28px;
        margin: 0 8px;
    }

    .hot_sep {
        min-width: 370px !important;
    }
}

@media (max-width: 820px) {
    .hot_sep {
        min-width: 270px !important;
    }
}


@media (max-width: 768px) {
    .hot_sep {
        min-width: 260px !important;
    }
}

@media (max-width: 480px) {
    .hot_sep {
        min-width: 100px !important;
    }
}

/* 评论区域***********************************/
.comment_section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.comment_container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0px;
    align-items: flex-start;
}

/* 左侧谷歌评分卡片 */
.google_rating_card {
    flex-shrink: 0;
    width: 250px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ti_rating_text {
    font-size: 15px;
    color: #666;
}

.ti_rating {
    color: #000;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.ti_stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    align-items: center;
}

.ti_star {
    width: 30px;
    height: 30px;
}

.nowrap {
    white-space: nowrap;
}

.ti_large_logo {
    margin-top: 10px;
}

.ti_v_center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ti_logo_fb {
    width: 110px;
    height: auto;
}

/* 右侧轮播图容器 */
.comment_swiper_wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.comment_swiper_container {
    width: 100%;
    padding: 10px 50px;
}

/* 评论卡片 */
.comment_card {
    background: #f4f4f4 !important;
    border-radius: 8px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comment_card:hover {
    transform: translateY(-5px);
}

.ti_inner {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 评论头部 */
.ti_review_header {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.ti_platform_icon {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
}

.ti_profile_img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.ti_profile_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ti_profile_placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.ti_profile_details {
    flex: 1;
}

.ti_name {
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

.ti_date {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

/* 星级评分 */
.ti_inner .ti_stars {
    justify-content: flex-start;
    gap: 0px;
}

.ti_verified_review {
    margin-left: 5px;
    display: inline-flex;
    align-items: center;
}

.ti_verified_review svg {
    width: 16px;
    height: 16px;
}

/* 评论文本 */
.ti_review_text_container {
    font-size: 15px;
    line-height: 1.6;
    color: #000;
    min-height: 80px;
}

.ti_read_more {
    font-size: 13px;
    color: #949494;
    cursor: pointer;
}

.ti_read_more_link {
    text-decoration: none;
}

.ti_read_more_link:hover {
    text-decoration: underline;
}

/* Swiper 导航按钮 */
.comment_swiper_container .swiper-button-next,
.comment_swiper_container .swiper-button-prev {
    width: 44px !important;
    height: 44px !important;
    color: #333 !important;
}

.comment_swiper_container .swiper-button-next:after,
.comment_swiper_container .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}


/* 响应式设计 - 1024px */
@media (max-width: 1024px) {
    .comment_container {
        gap: 30px;
    }

    .google_rating_card {
        width: 300px;
        padding: 25px 15px;
    }

    .comment_swiper_container {
        padding: 10px 45px;
    }

    .comment_swiper_container .swiper-button-next,
    .comment_swiper_container .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .comment_swiper_container .swiper-button-next:after,
    .comment_swiper_container .swiper-button-prev:after {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .comment_section {
        padding: 40px 15px;
    }

    .google_rating_card {
        flex-direction: column;
        max-width: 250px;
        gap: 12px;
    }

    .comment_swiper_container {
        padding: 10px 40px;
    }

    .comment_swiper_container .swiper-button-next,
    .comment_swiper_container .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .comment_swiper_container .swiper-button-next:after,
    .comment_swiper_container .swiper-button-prev:after {
        font-size: 16px;
    }

    .ti_inner {
        padding: 15px;
    }

    .ti_review_text_container {
        min-height: 70px;
        font-size: 13px;
    }
}

/* 响应式设计 - 480px */
@media (max-width: 480px) {
    .comment_section {
        padding: 30px 10px;
    }

    .comment_container {
        flex-direction: column;
        gap: 18px;
        align-items: center;
        width: 100%;
    }

    .promo_title {
        font-size: 20px;
    }

    .google_rating_card {
        max-width: 200px;
        padding: 15px;
        gap: 10px;
    }

    .ti_rating {
        font-size: 24px;
    }

    .ti_rating_text {
        font-size: 15px;
    }

    .ti_logo_fb {
        width: 90px;
    }

    .comment_swiper_container {
        padding: 10px 35px;
    }

    .comment_swiper_container .swiper-button-next,
    .comment_swiper_container .swiper-button-prev {
        width: 32px;
        height: 32px;
    }

    .comment_swiper_container .swiper-button-next:after,
    .comment_swiper_container .swiper-button-prev:after {
        font-size: 14px;
    }

    .comment_card {
        border-radius: 6px;
    }

    .ti_inner {
        padding: 12px;
        gap: 10px;
    }

    .ti_profile_img,
    .ti_profile_placeholder {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .ti_name {
        font-size: 13px;
    }

    .ti_date {
        font-size: 11px;
    }

    .ti_review_text_container {
        min-height: 60px;
        font-size: 12px;
        line-height: 1.5;
    }

    .ti_read_more {
        font-size: 12px;
    }

    .ti_star {
        width: 30px;
        height: 30px;
    }

    .ti_verified_review svg {
        width: 14px;
        height: 14px;
    }

    /* 修复小屏幕下轮播卡片超出屏幕的问题 */
    .slidshow_section,
    .slidshow_section .slidshow_container,
    .comment_swiper_wrapper,
    .comment_swiper_container,
    .comment_swiper_container .swiper,
    .comment_swiper_container .swiper-wrapper {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .slidshow_section img,
    .comment_swiper_container img,
    .slidshow_section .swiper-slide img,
    .comment_swiper_container .swiper-slide img,
    .swiper-slide img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .comment_swiper_container {
        padding: 0 12px;
    }

    .comment_swiper_container .swiper-slide {
        padding: 0;
    }

    .comment_card {
        width: 100%;
        box-sizing: border-box;
    }

    .comment_next,
    .comment_prev {
        display: none !important;
    }
}

/* 博客卡片区域***********************************/
.blog_section {
    padding: 60px 20px;
    background-color: #fff;
}

.blog_container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.blog_sep {
    max-width: 550px;
}

/* 博客文章卡片 */
.fusion_post {
    display: flex;
    flex-direction: column;
    background: #fff;
    transition: transform 0.3s ease;
}

/* 图片容器 */
.fusion_flexslider {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.fusion_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.fusion_post:hover .fusion_img {
    transform: scale(1.05);
}


.blog_overlay_title {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    line-height: 1.3;
}

/* 文章内容区域 */
.recent_posts_content {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog_title_link {
    color: #e74c3c;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
    display: block;
    transition: color 0.3s ease;
}

.blog_title_link:hover {
    text-decoration: underline;
}

.meta_info {
    margin: 0;
    font-size: 14px;
    color: #000;
}

.meta_info span {
    display: inline-block;
}

/* 响应式设计 - 1024px */
@media (max-width: 1024px) {
    .blog_container {
        gap: 25px;
    }

    .blog_overlay_title {
        font-size: 18px;
    }

    .blog_title_link {
        font-size: 15px;
    }
}

/* 响应式设计 - 768px */
@media (max-width: 768px) {
    .blog_section {
        padding: 40px 15px;
    }

    .blog_container {
        gap: 30px;
        padding: 0 10px;
    }

    .fusion_flexslider {
        aspect-ratio: 16/9;
    }

    .blog_overlay_title {
        font-size: 16px;
    }

    .blog_title_link {
        font-size: 14px;
    }

    .meta_info {
        font-size: 13px;
    }
}

/* 响应式设计 - 480px */
@media (max-width: 480px) {
    .blog_section {
        padding: 30px 10px;
    }

    .blog_container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .recent_posts_content {
        padding: 15px 0;
    }


    .blog_title_link {
        font-size: 13px;
    }

    .meta_info {
        font-size: 12px;
    }

    .blog_overlay {
        padding: 20px 15px 15px;
    }

    .blog_overlay_title {
        font-size: 14px;
    }
}




/* 底部区域***********************************/
.fusion_footer {
    background-color: #2b2e32;
    color: #fff;
}

.footer_main {
    padding: 60px 20px 40px;
}

.footer_container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer_columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 60px;
}

/* 底部栏目 */
.footer_column {
    display: flex;
    flex-direction: column;
}

.footer_widget {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer_title {
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin: 0;
    padding-bottom: 10px;
}

/* 菜单列表 */
.footer_menu_container {
    margin: 0;
}

.footer_menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer_menu .menu_item {
    margin: 0;
   
}

.footer_menu .menu_item a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

.footer_menu .menu_item a:before {
    content: '›';
    margin-right: 8px;
    font-size: 16px;
    font-weight: bold;
}

.footer_menu .menu_item a:hover {
    color: #e74c3c;
}

/* 第三栏 - CONNECT WITH US */
.footer_column_wide {
    max-width: 450px;
}

.footer_description {
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* 订阅按钮 */
.footer_subscribe {
    margin: 10px 0;
}

.subscribe_button {
    display: inline-block;
    background-color: #f15d32;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.subscribe_button:before {
    content: '›';
    margin-right: 8px;
    font-size: 16px;
    font-weight: bold;
}

.subscribe_button:hover {
    background-color: #c0392b;
}

/* 社交媒体图标 */
.social_links {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.social_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: color 0.3s ease;
}

.social_icon:hover {
    color: #e74c3c;
}

.social_icon svg {
    width: 20px;
    height: 20px;
}

/* 认证徽章 */
.footer_badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
}

.badge_img {
    height: 150px;
    width: auto;
    object-fit: contain;
}

/* 版权信息区域 */
.footer_copyright {
    background-color: #1d1f22;
    padding: 20px;
    text-align: center;
}

.copyright_container {
    max-width: 1400px;
    margin: 0 auto;
}

.copyright_text {
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
}

.copyright_text span {
    color: #fff;
}

/* 响应式设计 - 1024px */
@media (max-width: 1024px) {
    .footer_columns {
        /* grid-template-columns: 1fr 1fr; */
        gap: 40px;
    }

    .footer_column_wide {
        max-width: 100%;
    }

    .footer_badges {
        justify-content: flex-start;
    }

    .badge_img {
        height: 70px;
    }
}

/* 响应式设计 - 768px */
@media (max-width: 768px) {
    .footer_main {
        padding: 40px 20px 30px;
    }

    .footer_columns {
        gap: 35px;
    }

    .footer_column_wide {
        grid-column: auto;
    }

    .footer_title {
        font-size: 13px;
    }

    .footer_menu .menu_item a {
        font-size: 13px;
    }

    .footer_description {
        font-size: 13px;
    }

    .subscribe_button {
        padding: 10px 25px;
        font-size: 13px;
    }

    .social_links {
        gap: 12px;
    }

    .social_icon svg {
        width: 18px;
        height: 18px;
    }

    .footer_badges {
        gap: 15px;
    }

    .badge_img {
        height: 60px;
    }

    .copyright_text {
        font-size: 11px;
    }
}

/* 响应式设计 - 480px */
@media (max-width: 480px) {
    .footer_main {
        padding: 30px 15px 25px;
    }

    .footer_columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer_title {
        font-size: 12px;
    }

    .footer_menu {
        gap: 6px;
    }

    .footer_menu .menu_item a {
        font-size: 12px;
    }

    .footer_description {
        font-size: 12px;
        line-height: 1.6;
    }

    .subscribe_button {
        padding: 10px 20px;
        font-size: 12px;
        width: 50%;
        border-radius: 25px;
        text-align: center;
    }

    .social_links {
        gap: 10px;
        flex-wrap: wrap;
    }

    .social_icon svg {
        width: 16px;
        height: 16px;
    }

    .footer_badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .badge_img {
        height: 175px;
    }

    .footer_copyright {
        padding: 15px 10px;
    }

    .copyright_text {
        font-size: 13px;
        line-height: 1.5;
    }
}



/*contact.html ======================================================== */

/* 联系我们区域 */
.contact_section {
    background: #ffffff;
    padding: 48px 0 40px;
}

.fusion_title_bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fusiontitle_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.fusiontitle_captions h1 {
    margin: 0;
    color: #ff4c00;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: -0.5px;
}

.fusiontitle_secondary {
    text-align: right;
}

.fusion_breadcrumbs {
    color: #6f6f6f;
    font-size: 13px;
    font-weight: 400;
}

.fusion_breadcrumb_list {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.fusion_breadcrumb_item {
    color: #6f6f6f;
}

.fusion_breadcrumb_item+.fusion_breadcrumb_item::before {
    content: " | ";
    color: #cfcfcf;
    padding: 0 10px;
}

.fusion_breadcrumb_link {
    color: #6f6f6f;
}

@media (max-width: 1024px) {
    .fusiontitle_wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .contact_section {
        background: #ffffff;
        padding: 10px 0;
    }
}

@media (max-width: 768px) {

    .fusiontitle_secondary {
        width: 100%;
        text-align: left;
    }
}

/* 谷歌地图区域***********************************/

.contact_map {
    width: 100vw;
    max-width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
    box-sizing: border-box;
    background: #fff;
}

.contact_map_iframe {
    width: 100%;
    height: 480px;
    border: none;
    display: block;
    border-bottom: 2px solid #ff4c00;
}

.contact_description {
    position: relative;
    z-index: 4;
    background: #fff;
    color: #666;
    text-align: center;
    padding: 26px 36px;
    box-sizing: border-box;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 auto;
}

.contact_description::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #ff4c00;
    z-index: 6;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .contact_map_iframe {
        height: 420px;
    }

    .contact_description {
        padding: 20px 24px;
    }

    .contact_map {
        padding-bottom: 120px;
    }

    .contact_map_iframe {
        border-bottom: 3px solid #ff4c00;
    }

    @media (max-width: 768px) {
        .contact_map_iframe {
            height: 300px;
        }

        .contact_description {
            padding: 16px 18px;
        }

        .contact_map {
            padding-bottom: 110px;
        }
    }

    @media (max-width: 420px) {
        .contact_map_iframe {
            height: 220px;
        }

        .contact_description {
            padding: 12px 14px;
        }

    }
}

/* 联系表单区域***********************************/
.contact_form {
    background: #fff;
}

.contact_form_container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.contact_form_content {
    max-width: 820px;
    margin: 0 auto;
}

.contact_form form {
    display: block;
}

.contact_form p {
    margin: 0 0 18px 0;
}

.contact_form label {
    display: block;
    font-size: 12px;
    color: #586065;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact_form .form-input,
.contact_form .form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px dashed #11b1c9;
    background: transparent;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    border-radius: 2px;
    resize: vertical;
}

.contact_form .form-textarea {
    min-height: 180px;
}

/* Checkbox 和隐私文案 */
.contact_form .form-checkbox {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 12px;
    accent-color: #ff4c00;
    -webkit-appearance: none;
    appearance: none;
    border: 2px solid #cfcfcf;
    border-radius: 2px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.contact_form .form-checkbox:checked {
    background-color: #ff4c00;
    border-color: #ff4c00;
}

.contact_form .field_wrap,
.contact_form .checkbox_label {
    align-items: center;
    gap: 10px;
    width: 100%;
    color: #666;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    line-height: 1.2;
}

.contact_form .privacy_link {
    color: #ff4c00;
    font-weight: 700;
    text-decoration: none;
    margin-left: 6px;
}

/* 发送按钮 */
.contact_form .send_button {
    background: #ff4c00;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact_form .send_button:before {
    content: '›';
    margin-right: 6px;
    font-weight: 900;
}

/* 对输入聚焦样式 */
.contact_form .form-input:focus,
.contact_form .form-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(17, 177, 201, 0.08);
    border-color: #11b1c9;
}

.contact_form_content form {
    padding-left: 24px;
}

@media (max-width: 1024px) {
    .contact_form {
        padding: 40px 0 40px;
    }

    .contact_form_content form {
        padding-left: 12px;
    }
}

@media (max-width: 768px) {
    .contact_form {
        padding: 30px 0 30px;
    }

    .contact_form_content {
        padding: 0 12px;
    }

    .contact_form label {
        font-size: 11px;
    }

    .contact_form textarea {
        min-height: 140px;
    }
}


/*about us.html ======================================================== */


/* 关于我们区域***********************************/
.about_section {
    background: #ffffff;
    padding: 60px 0 70px;
}

.about_container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.about_grid {
    display: grid;
    /* single-column stacked layout */
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
    row-gap: 36px;
    width: 100%;
}

.about_row,
.about_text,
.about_media_row,
.about_row--profile {
    width: 100%;
}

.about_image {
    width: 100%;
    max-width: 585px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    object-fit: cover;
}

.about_heading {
    color: #ff4c00;
    font-size: 28px;
    margin: 6px 0 12px;
    font-weight: 700;
    line-height: 1.2;
}

.about_paragraph {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.about_note span {
    font-size: 15px;
}

.about_link {
    color: #ff4c00;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.about_video_inner iframe {
    width: 100%;
    max-width: 760px;
    height: auto;
    aspect-ratio: 16/9;
    display: block;
    border: none;
    margin: 0 auto;
}

@media (max-width: 820px) {
    .about_grid {
        gap: 20px;
        padding: 0;
    }

    .about_image {
        margin: 0 auto;
    }

    .about_section {
        padding: 36px 0;
    }
}

@media (max-width: 480px) {
    .about_section {
        padding: 24px 0;
    }

    .about_heading {
        font-size: 18px;
    }

    .about_paragraph {
        font-size: 13px;
    }
}


/*detail.html ======================================================== */


/* 商品详情区域************************ */
.product_detail_row {
    max-width: 1200px;
    margin: 26px auto 40px;
    padding: 0 20px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
    box-sizing: border-box;
}

.product_detail_gallery {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product_detail_gallery_bigimage {
    width: 100%;
}

.product_detail_gallery_bigimage img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.product_detail_gallery_thumbs {
    width: 100%;
    overflow: auto;
}

.product_detail_gallery_thumbs_items {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
        flex-wrap: wrap;
        align-items: stretch;
}

.image_thumb_item {
    display: inline-flex;
    flex: 1;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
}

.image_thumb_item img {
    display: block;
    width: 100%;
    object-fit: contain;
}

.image_thumb_item.active img {
    border-color: #ff4c00;
    transform: scale(1.03);
    box-shadow: 0 6px 14px rgba(255, 76, 0, 0.08);
}

.image_thumb_item:focus img {
    outline: none;
    box-shadow: 0 0 0 3px rgba(17, 177, 201, 0.12);
}

.product_info {
    flex: 1;
    min-width: 320px;
    max-width: 640px;
}

.summary_container {
    padding: 6px 0;
}

.fusion_page_captions .info_title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 30px;
    color: #555;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 12px;
}

.fusion_text .price_block {
    font-size: 15px;
    color: #666;
    margin-bottom: 18px;
}

.product_highlight {
    color: #ff4c00;
    font-weight: 800;
}

.price_qty {
    font-size: 30px;
    color: #ff4c00;
    margin-right: 6px;
}

.price_value {
    font-size: 30px;
    color: #e74c3c;
    margin-left: 6px;
}

.action_buttons {
    margin: 18px 0 24px;
}

.quote_button {
    display: inline-block;
    background: #ff4c00;
    color: #fff;
    padding: 14px 28px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(255, 76, 0, 0.12);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.quote_button:hover {
    box-shadow: 0 10px 24px rgba(255, 76, 0, 0.16);
}

/* tab 栏 */
.nav_tabs {
    display: flex;
    margin: 12px 0 18px;
    align-items: center;
}

.nav_items {
    background: #ddd;
    padding: 12px 18px;
    cursor: pointer;
    font-weight: 700;
    color: #333;
}

.nav_items .nav_link,
.nav_items>a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-direction: column;
}

.tab_icon {
    width: 20px;
    height: 20px;
    fill: #666;
    flex-shrink: 0;
}

.nav_items:first-child {
    border-radius: 10px 0 0 10px;
}

.nav_items:last-child {
    border-radius: 0 10px 10px 0px;
}

.nav_items:hover {
    background: #fff;
}


.tab_content {
    margin-top: 8px;
}

.tab_pane {
    color: #4b4b4b;
    font-size: 15px;
    line-height: 1.7;
    padding: 6px 2px;
    display: none;
}

.tab_pane.active {
    display: block;
}

.tab_pane strong {
    color: #333;
}

/* SKU 与信息行 */
.tab_pane p strong {
    font-weight: 700;
    margin-right: 6px;
}

/* 响应式断点 */
@media (max-width: 1024px) {
    .product_detail_row {
        gap: 30px;
        padding: 0 16px;
    }

    .fusion_page_captions .info_title {
        font-size: 30px;
    }

    .price_qty,
    .price_value {
        font-size: 26px;
    }
}

@media (max-width: 820px) {
    .product_detail_row {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }

    .product_detail_gallery {
        order: 0;
        margin: 0 auto;
    }

    .product_info {
        order: 1;
        max-width: 100%;
    }

    .quote_button {
        padding: 12px 22px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .fusion_page_captions .info_title {
        font-size: 22px;
    }

    .price_qty,
    .price_value {
        font-size: 22px;
    }

    .nav_tabs {
        flex-wrap: wrap;
    }

    .product_detail_row {
        padding: 0 30px;
    }


    .image_thumb_item img {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .product_detail_row {
        padding: 0 12px;
    }

    .fusion_page_captions .info_title {
        font-size: 18px;
    }

    .price_qty,
    .price_value {
        font-size: 18px;
    }

    .quote_button {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
        font-size: 16px;
    }

    .nav_tabs {
        flex-wrap: nowrap;
    }

    .nav_items {
        padding: 12px 15px;
    }
}


/* Q&A表单区域************************ */
.comment_title {
    text-align: left;
}

.product_questions_section {
    background: #fff;
    padding: 60px 0;
}

.product_questions {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.questions_section {
    background: transparent;
    padding: 0;
}

.questions_section .fusion_calculated {
    color: #ff4c00;
    font-size: 28px;
    margin-bottom: 18px;
    font-weight: 800;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.woocommerce_noreviews {
    color: #666;
    margin-bottom: 18px;
    font-size: 15px;
}

#ask_question_form .ask_question {
    display: block;
    gap: 14px;
}

#ask_question_form label {
    display: block;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-size: 12px;
}

#ask_question_form textarea.ask_question_text {
    width: 100%;
    min-height: 80px;
    padding: 14px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    font-size: 15px;
    color: #333;
    resize: vertical;
    box-shadow: none;
    background: #fafafa;
}

#ask_question_form input[type="text"].guest_name,
#ask_question_form input[type="text"].guest_email {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    font-size: 15px;
    color: #333;
    background: #fff;
    box-sizing: border-box;
}

.notify_answers {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.notify_answers button {
    background: #2c489b;
    color: #fff;
    padding: 14px 28px;
    border-radius: 15px;
    border: none;
    font-weight: 800;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(45, 63, 155, 0.12);
}

.notify_answers button:hover {
    transform: translateY(-2px);
}

.notify_answers .enable_notification {
    width: 18px;
    height: 18px;
    margin-left: 6px;
}

.notify_row {
    display: flex;
    align-items: center;
    gap: 10px;
    order: 1;
}

.notify_label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #333;
    font-size: 14px;
}

.notify_text {
    color: #333;
    line-height: 1.2;
}

.ask_button {
    background: #2c489b;
    color: #fff;
    padding: 14px 28px;
    border-radius: 15px;
    border: none;
    font-weight: 800;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(45, 63, 155, 0.12);
}

.ask_button:hover {
    transform: translateY(-2px);
}

/* 小屏调整 */
@media (max-width: 1024px) {
    .product_questions_section {
        padding: 48px 0;
    }

    .questions_section .fusion_calculated {
        font-size: 28px;
    }
}


@media (max-width: 480px) {
    .product_questions_section {
        padding: 32px 0;
    }

    .notify_answers button {
        width: auto;
        min-width: 120px;
        padding: 12px 16px;
    }

    .notify_answers {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        justify-content: flex-start;
    }

    .notify_answers .enable_notification {
        margin-left: 6px;
        margin-right: 6px;
    }

    .notify_answers button {
        order: 2;
        align-self: stretch;
        max-width: 100px;
    }

    .notify_answers input.enable_notification {
        order: 1;
    }
}

/* 为什么选择我们区域************************ */
.why_choose_us {
    background: #fff;
    padding: 60px 0 40px;
}

.why_choose_us_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.why_title {
    color: #ff4c00;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 800;
    text-align: left;
}

.why_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
    align-items: start;
}

.why_item {
    text-align: center;
    padding: 8px;
}

.why_icon img {
    width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto 18px;
}


@media (max-width: 1024px) {
    .why_grid {
        gap: 24px;
    }

    .why_icon img {
        width: 160px;
    }
    .why_grid {
        grid-template-columns: repeat(4, 1fr);
       
    }
}

@media (max-width: 820px) {
    .why_grid {
        gap: 18px;
    }
    .why_grid {
        grid-template-columns: repeat(3, 1fr);

    }

    .why_icon img {
        width: 125px;
    }

}

@media (max-width: 768px) {
    .why_icon img {
        width: 116px;
    }
}

@media (max-width: 480px) {
    .why_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why_icon img {
        width: 350px;
    }

    .why_item {
        text-align: left;
        display: flex;
        gap: 12px;
        align-items: center;
    }


    .why_title {
        font-size: 25px;
    }
}


/* 猜你喜欢区域************************ */
.you_like_section {
    background: #fff;
}

.you_like_section>div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.also_like_title {
    color: #ff4c00;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 28px 0;
    text-align: left;
}

.also_like_products {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.also_like_products li {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.also_like_products li a img {
    width: 100%;
    height: 360px;
    object-fit: contain;
    display: block;
    background: #fff;
}

.product_details {
    padding: 18px 15px 40px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product_title a {
    color: #e85b2a;
    font-weight: 700;
    font-size: 11px;
    text-decoration: none;
}

.fusion_price_rating {
    display: flex;
    align-items: center;
    gap: 0px;
    flex-wrap: nowrap;
}

.fusion_price_rating .span_price,
.fusion_price_rating .Price_amount,
.fusion_price_rating .minquantity_category {
    display: inline-block;
    vertical-align: middle;
}

.fusion_price_rating .minquantity_category {
    margin-left: 6px;
    white-space: nowrap;
}

.span_price .Price_amount {
    color: #10b5cc;
    font-weight: 700;
    font-size: 11px;
}

.minquantity_category {
    color: #e85b2a;
    font-size: 15px;
}

.product_buttons {
    border-top: 1px solid #efefef;
}

.product_buttons_container {
    padding: 12px 20px;
}

.show_details_button {
    color: #e85b2a;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .also_like_products {
        grid-template-columns: repeat(2, 1fr);
    }

    .fusion_price_rating {
        justify-content: space-between;
    }

    .also_like_products li a img {
        height: 320px;
    }
}

@media (max-width: 820px) {

    .also_like_products li a img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .also_like_products {
        grid-template-columns: 1fr;
    }

    .also_like_products li a img {
        height: 220px;
    }

    .also_like_products li {
        display: block;
    }

    .also_like_title {
        font-size: 25px;
    }

    .product_details {
        padding: 12px 14px;
    }
}


/* 底部图片区域************************ */
.footer_promo_section {
    background: #fff;
    padding: 36px 0 28px;
}

.footer_promo_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer_promo_inner {
    display: flex;
    gap: 100px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.promo_item {
    flex: 0 0 300px;
    text-align: center;
}

.promo_item img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    object-fit: cover;
}

@media (max-width: 1024px) {
    .footer_promo_inner {
        gap: 24px;
    }

    .promo_item {
        flex: 0 0 300px;
    }
}


@media (max-width: 820px) {
    .promo_item {
        flex: 0 0 240px;
    }
}

@media (max-width: 768px) {
    .footer_promo_inner {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .promo_item {
        flex: 1 1 auto;
        max-width: 560px;
        margin: 0 auto;
    }

    .promo_item img {
        width: 600px;
    }
}

@media (max-width: 480px) {
    .promo_item img {
        width: 340px;
    }
}


/* 社媒区域************************ */

.social_share {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: center;
    gap: 0;
    box-sizing: border-box;
}

.social_share li {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    padding: 18px 28px;
    justify-content: flex-start;
    border: 1px solid #eee;
    list-style: none;
}

.sharer_icon {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: #e85b2a;
}

.fontawesome_icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #333;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex: 0 0 44px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.fontawesome_icon svg {
    width: 18px;
    height: 18px;
    display: block;
    color: #fff;
    fill: currentColor;
}

.facebook .sharer_icon,
.twitter .sharer_icon,
.email .sharer_icon {
    color: #e85b2a;
}

.sharer_icon .fusion_share_text span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

@media (max-width: 1024px) {
    .social_share li {
        padding: 18px 20px;
    }
}

@media (max-width: 820px) {
    .social_share {
        padding: 12px 10px;
    }

    .social_share li {
        padding: 12px 14px;
    }

    .fontawesome_icon {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .social_share {
        display: grid;
        gap: 0;
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
        border-top: none;
        border-bottom: none;
    }

    .social_share li {
        width: 100%;
        border-right: none;
        border-top: 1px solid #eee;
        padding: 14px 20px;
        justify-content: flex-start;
    }

    .social_share li:first-child {
        border-top: none;
    }

    .social_section {
        padding: 60px 0;
    }
}

/* Quick Quote 模态样式 */
.quick-quote-modal {
    display: none;
}

.quick-quote-modal.open {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.qq-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1201;
}

.qq-dialog {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 680px;
    max-width: calc(100% - 40px);
    padding: 28px;
    border-radius: 6px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 1202;
    box-sizing: border-box;
}

.qq-close {
    position: absolute;
    right: 12px;
    top: 8px;
    background: transparent;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #666;
}

.qq-dialog h2 {
    margin: 0 0 12px 0;
    font-size: 20px;
    color: #333;
}

.qq-form .qq-row {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
}

.qq-form label {
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
}

.qq-form input,
.qq-form textarea {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.qq-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.qq-submit {
    background: #ff4c00;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 820px) {
    .qq-dialog {
        width: 92%;
        padding: 18px;
    }
}